Skip to content

Commit 6a849e2

Browse files
committed
vue config updated
1 parent 6a08a4e commit 6a849e2

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

vue.config.js

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
const { defineConfig } = require('@vue/cli-service')
22
module.exports = defineConfig({
3+
css: {
4+
extract: { ignoreOrder: true },
5+
},
6+
configureWebpack: {
7+
output: {
8+
crossOriginLoading: "anonymous",
9+
},
10+
},
11+
chainWebpack: (config) => {
12+
config.plugins.delete("prefetch");
13+
},
14+
productionSourceMap: false,
315
transpileDependencies: [
416
'vuetify'
5-
]
6-
})
17+
],
18+
pwa: {
19+
name: "DevFest India 2023",
20+
workboxPluginMode: "InjectManifest",
21+
themeColor: "#3D7FF5",
22+
msTileColor: "#3D7FF5",
23+
appleMobileWebAppCapable: "yes",
24+
appleMobileWebAppStatusBarStyle: "black",
25+
manifestOptions: {
26+
background_color: "#ffffff",
27+
},
28+
})

0 commit comments

Comments
 (0)