blob: 3b104f727f2c31603659bd4b0853a40ea37c9e59 (
plain) (
tree)
|
|
module.exports = {
chainWebpack: (config) => {
config.module
.rule("yaml")
.test(/\.ya?ml$/)
.use("raw-loader")
.loader("raw-loader")
.end();
},
pwa: {
manifestPath: "assets/manifest.json"
}
};
|