mirror of
https://github.com/bastienwirtz/homer.git
synced 2024-11-07 16:54:00 +01:00
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
module.exports = {
|
|
chainWebpack: (config) => {
|
|
config.module
|
|
.rule("yaml")
|
|
.test(/\.ya?ml$/)
|
|
.use("raw-loader")
|
|
.loader("raw-loader")
|
|
.end();
|
|
},
|
|
};
|