diff options
Diffstat (limited to 'vue.config.js')
-rw-r--r-- | vue.config.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vue.config.js b/vue.config.js new file mode 100644 index 0000000..3b104f7 --- /dev/null +++ b/vue.config.js | |||
@@ -0,0 +1,13 @@ | |||
1 | module.exports = { | ||
2 | chainWebpack: (config) => { | ||
3 | config.module | ||
4 | .rule("yaml") | ||
5 | .test(/\.ya?ml$/) | ||
6 | .use("raw-loader") | ||
7 | .loader("raw-loader") | ||
8 | .end(); | ||
9 | }, | ||
10 | pwa: { | ||
11 | manifestPath: "assets/manifest.json" | ||
12 | } | ||
13 | }; | ||