Skip to content

Commit 0aa1720

Browse files
committed
🔥 Silences non-critical warnings in production
1 parent b065a54 commit 0aa1720

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vue.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ module.exports = {
99
chainWebpack: config => {
1010
config.module.rules.delete('svg');
1111
},
12-
1312
configureWebpack: {
13+
performance: { hints: false },
1414
module: {
1515
rules: [
1616
{ test: /.svg$/, loader: 'vue-svg-loader' },
@@ -26,12 +26,12 @@ module.exports = {
2626
}),
2727
],
2828
},
29-
3029
pwa: {
3130
name: 'Dashy',
3231
manifestPath: './manifest.json',
3332
themeColor: '#00af87',
3433
msTileColor: '#0b1021',
34+
mode: 'production',
3535
iconPaths: {
3636
manifestCrossorigin: 'use-credentials',
3737
favicon64: './web-icons/favicon-64x64.png',

0 commit comments

Comments
 (0)