about summary refs log tree commit diff
path: root/config/webpack
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-07-28 12:14:01 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-07-28 05:14:01 +0200
commitf93f30605321684baad373c9b26e11e93820807f (patch)
tree03e3a862220ae97835efd71487c9124a03bb39eb /config/webpack
parente67fc997dcb1c0e9e7e84d5f2d9247042024bfcb (diff)
Remove hash from chunk filename when dev env (#4411)
Diffstat (limited to 'config/webpack')
-rw-r--r--config/webpack/production.js6
-rw-r--r--config/webpack/shared.js2
2 files changed, 6 insertions, 2 deletions
diff --git a/config/webpack/production.js b/config/webpack/production.js
index 64bdee47d..cd1dd91dc 100644
--- a/config/webpack/production.js
+++ b/config/webpack/production.js
@@ -10,7 +10,11 @@ const { publicPath } = require('./configuration.js');
 const path = require('path');
 
 module.exports = merge(sharedConfig, {
-  output: { filename: '[name]-[chunkhash].js' },
+  output: {
+    filename: '[name]-[chunkhash].js',
+    chunkFilename: '[name]-[chunkhash].js',
+  },
+
   devtool: 'source-map', // separate sourcemap file, suitable for production
   stats: 'normal',
 
diff --git a/config/webpack/shared.js b/config/webpack/shared.js
index 4d865b816..b097a5fe4 100644
--- a/config/webpack/shared.js
+++ b/config/webpack/shared.js
@@ -33,7 +33,7 @@ module.exports = {
 
   output: {
     filename: '[name].js',
-    chunkFilename: '[name]-[chunkhash].js',
+    chunkFilename: '[name].js',
     path: output.path,
     publicPath: output.publicPath,
   },