diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-06-04 22:40:48 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-02 21:16:41 +0200 |
commit | cbbed6346a437e6b9f05f646f1df0c77d2fb36eb (patch) | |
tree | 50d887f10739036a374065ebea047f891ad223a7 /vue.config.js | |
parent | 95c589ba71d80ed0073158bbb6f81ec449b058d6 (diff) | |
download | homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.tar.gz homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.tar.zst homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.zip |
Migrate to VueJS 3
Diffstat (limited to 'vue.config.js')
-rw-r--r-- | vue.config.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/vue.config.js b/vue.config.js deleted file mode 100644 index 82329d8..0000000 --- a/vue.config.js +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | const manifestOptions = require("./public/assets/manifest.json"); | ||
2 | |||
3 | module.exports = { | ||
4 | chainWebpack: (config) => { | ||
5 | config.module | ||
6 | .rule("yaml") | ||
7 | .test(/\.ya?ml$/) | ||
8 | .use("raw-loader") | ||
9 | .loader("raw-loader") | ||
10 | .end(); | ||
11 | }, | ||
12 | publicPath: "", | ||
13 | pwa: { | ||
14 | manifestPath: "assets/manifest.json", | ||
15 | manifestCrossorigin: "use-credentials", | ||
16 | appleMobileWebAppStatusBarStyle: "black", | ||
17 | appleMobileWebAppCapable: "yes", | ||
18 | name: manifestOptions.name, | ||
19 | themeColor: manifestOptions.theme_color, | ||
20 | manifestOptions, | ||
21 | iconPaths: { | ||
22 | favicon32: "assets/icons/favicon-32x32.png", | ||
23 | favicon16: "assets/icons/favicon-16x16.png", | ||
24 | appleTouchIcon: "assets/icons/icon-maskable.png", | ||
25 | maskIcon: "assets/icons/safari-pinned-tab.svg", | ||
26 | msTileImage: "assets/icons/icon-any.png", | ||
27 | }, | ||
28 | }, | ||
29 | devServer: { | ||
30 | disableHostCheck: true, | ||
31 | }, | ||
32 | }; | ||