From d7ca2d78034e675a7083fd9892e66a0ebbd6bac6 Mon Sep 17 00:00:00 2001 From: abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com> Date: Fri, 25 Oct 2019 17:46:39 +0530 Subject: [PATCH] use [name].bundle.js file naming scheme for outputs --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 52ca2cb..5814fbf 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -18,7 +18,7 @@ module.exports = { }, output: { - filename: 'js/[name].[chunkhash].js', + filename: 'js/[name].bundle.js', path: path.resolve(__dirname, 'extension', process.env.TARGET), },