From 0aa17203be8e2026b53d1e0589e0a3af445266ae Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Mon, 28 Jun 2021 22:43:55 +0100 Subject: [PATCH] :fire: Silences non-critical warnings in production --- vue.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vue.config.js b/vue.config.js index a6d2c576..95d791e7 100644 --- a/vue.config.js +++ b/vue.config.js @@ -9,8 +9,8 @@ module.exports = { chainWebpack: config => { config.module.rules.delete('svg'); }, - configureWebpack: { + performance: { hints: false }, module: { rules: [ { test: /.svg$/, loader: 'vue-svg-loader' }, @@ -26,12 +26,12 @@ module.exports = { }), ], }, - pwa: { name: 'Dashy', manifestPath: './manifest.json', themeColor: '#00af87', msTileColor: '#0b1021', + mode: 'production', iconPaths: { manifestCrossorigin: 'use-credentials', favicon64: './web-icons/favicon-64x64.png',