Skip to content

Commit

Permalink
Pull all values from manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
NotWoods committed Oct 23, 2020
1 parent 1017cc9 commit 40d3e8d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const manifestOptions = require("./public/assets/manifest.json");

module.exports = {
chainWebpack: (config) => {
config.module
Expand All @@ -12,9 +14,9 @@ module.exports = {
manifestPath: "assets/manifest.json",
appleMobileWebAppStatusBarStyle: "black",
appleMobileWebAppCapable: "yes",
name: "Homer Dashboard",
themeColor: "#3367D6",
manifestOptions: require('./public/assets/manifest.json'),
name: manifestOptions.name,
themeColor: manifestOptions.theme_color,
manifestOptions,
iconPaths: {
favicon32: "assets/icons/favicon-32x32.png",
favicon16: "assets/icons/favicon-16x16.png",
Expand Down

0 comments on commit 40d3e8d

Please sign in to comment.