From 84498677ca57c7191613b07aa0baad517b5087ad Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Sat, 6 Mar 2021 22:34:39 +0530 Subject: [PATCH] Update webpack config for copy-webpack-plugin v8 --- webpack.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webpack.config.ts b/webpack.config.ts index da57025a..cbf82a11 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -34,12 +34,12 @@ const config: webpack.Configuration[] = [ { from: './app/*.html', globOptions: {ignore: ['**/node_modules/**']}, - to: '[name].[ext]' + to: '[name][ext]' }, { from: './app/*.json', globOptions: {ignore: ['**/node_modules/**']}, - to: '[name].[ext]' + to: '[name][ext]' }, { from: './app/yarn.lock', @@ -48,7 +48,7 @@ const config: webpack.Configuration[] = [ { from: './app/keymaps/*.json', globOptions: {ignore: ['**/node_modules/**']}, - to: './keymaps/[name].[ext]' + to: './keymaps/[name][ext]' }, { from: './app/static',