From b5482ee01dc1cc5f05ca74868fab3073d6674a30 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 24 Feb 2024 17:13:16 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=20Remove=20webpack-progerss,=20use?= =?UTF-8?q?=20native=20instead?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue.config.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/vue.config.js b/vue.config.js index 9d637464..fd7b34ce 100644 --- a/vue.config.js +++ b/vue.config.js @@ -2,7 +2,6 @@ * Global config for the main Vue app. ES7 not supported here. * See docs for all config options: https://cli.vuejs.org/config */ -const ProgressBarPlugin = require('progress-bar-webpack-plugin'); // Get app mode: production, development or test const mode = process.env.NODE_ENV || 'production'; @@ -19,10 +18,6 @@ const publicPath = process.env.BASE_URL || '/'; // Should enable Subresource Integrity (SRI) on link and script tags const integrity = process.env.INTEGRITY === 'true'; -// Format for progress bar, shown while app building -const progressFormat = '\x1b[1m\x1b[36mBuilding Dashy\x1b[0m ' - + '[\x1b[1m\x1b[32m:bar\x1b[0m] :percent (:elapsed seconds)'; - // Webpack Config const configureWebpack = { mode, @@ -31,9 +26,6 @@ const configureWebpack = { { test: /.svg$/, loader: 'vue-svg-loader' }, ], }, - plugins: [ - new ProgressBarPlugin({ format: progressFormat }), - ], }; // Application pages