mirror of
https://github.com/taigrr/homer
synced 2025-01-18 04:53:12 -08:00
14 lines
240 B
JavaScript
14 lines
240 B
JavaScript
module.exports = {
|
|
chainWebpack: (config) => {
|
|
config.module
|
|
.rule("yaml")
|
|
.test(/\.ya?ml$/)
|
|
.use("raw-loader")
|
|
.loader("raw-loader")
|
|
.end();
|
|
},
|
|
pwa: {
|
|
manifestPath: "assets/manifest.json"
|
|
}
|
|
};
|