Remove hash from chunk filename when dev env (#4411)
This commit is contained in:
parent
e67fc997dc
commit
f93f306053
|
@ -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',
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ module.exports = {
|
|||
|
||||
output: {
|
||||
filename: '[name].js',
|
||||
chunkFilename: '[name]-[chunkhash].js',
|
||||
chunkFilename: '[name].js',
|
||||
path: output.path,
|
||||
publicPath: output.publicPath,
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue