From d043c21264043eb9817d8cd4ecfcbe8845975060 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 20 Apr 2024 11:25:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20dup=20bool=20check=20in=20?= =?UTF-8?q?webpack=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index a5ba6335..b18edf10 100644 --- a/vue.config.js +++ b/vue.config.js @@ -42,7 +42,7 @@ const isServer = process.env.IS_DOCKER || process.env.IS_SERVER || false; const plugins = !isServer ? [ new CopyWebpackPlugin({ patterns: [ - !isServer ? { from: './user-data', to: './' } : {}, + { from: './user-data', to: './' }, ], }), ] : [];