mirror of
https://github.com/bastienwirtz/homer.git
synced 2025-07-14 21:35:19 +02: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();
|
|
},
|
|
};
|