From e0c11752e57891b34e9d6c7237d5f87ac02c69af Mon Sep 17 00:00:00 2001 From: Nanobyte Date: Thu, 13 Aug 2020 23:32:38 +0200 Subject: Revert dependency changes --- webpack/webpack.common.js | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'webpack') diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js index 79fea60b..99dbac35 100644 --- a/webpack/webpack.common.js +++ b/webpack/webpack.common.js @@ -35,18 +35,11 @@ module.exports = env => ({ }, plugins: [ // exclude locale files in moment - new CopyPlugin({ - patterns: [ - { - from: '.', - to: '../', - globOptions: { - ignore: ['manifest.json'], - }, - context: './public', - } - ] - }), + new CopyPlugin([ + { from: '.', to: '../', ignore: ['manifest.json'] } + ], + {context: 'public' } + ), new BuildManifest({ browser: env.browser, pretty: env.mode === "production", -- cgit v1.2.3