diff options
-rw-r--r-- | vue.config.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vue.config.js b/vue.config.js index 5a9d05f..8e84dfe 100644 --- a/vue.config.js +++ b/vue.config.js | |||
@@ -1,3 +1,5 @@ | |||
1 | const manifestOptions = require("./public/assets/manifest.json"); | ||
2 | |||
1 | module.exports = { | 3 | module.exports = { |
2 | chainWebpack: (config) => { | 4 | chainWebpack: (config) => { |
3 | config.module | 5 | config.module |
@@ -12,9 +14,9 @@ module.exports = { | |||
12 | manifestPath: "assets/manifest.json", | 14 | manifestPath: "assets/manifest.json", |
13 | appleMobileWebAppStatusBarStyle: "black", | 15 | appleMobileWebAppStatusBarStyle: "black", |
14 | appleMobileWebAppCapable: "yes", | 16 | appleMobileWebAppCapable: "yes", |
15 | name: "Homer Dashboard", | 17 | name: manifestOptions.name, |
16 | themeColor: "#3367D6", | 18 | themeColor: manifestOptions.theme_color, |
17 | manifestOptions: require('./public/assets/manifest.json'), | 19 | manifestOptions, |
18 | iconPaths: { | 20 | iconPaths: { |
19 | favicon32: "assets/icons/favicon-32x32.png", | 21 | favicon32: "assets/icons/favicon-32x32.png", |
20 | favicon16: "assets/icons/favicon-16x16.png", | 22 | favicon16: "assets/icons/favicon-16x16.png", |