We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a08a4e commit 6a849e2Copy full SHA for 6a849e2
vue.config.js
@@ -1,6 +1,28 @@
1
const { defineConfig } = require('@vue/cli-service')
2
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,
15
transpileDependencies: [
16
'vuetify'
- ]
-})
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