mirror of https://github.com/bastienwirtz/homer
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();
|
||
|
},
|
||
|
};
|