Fix chunk IDs and source map file names

(cherry picked from commit bb8fed94eb2c44040031643e8c20ff72de759535)
pull/1787/head
Mark McDowall 11 months ago committed by Bogdan
parent 62d868f0e9
commit 6e21e892bc

@ -65,17 +65,13 @@ module.exports = (env) => {
output: {
path: distFolder,
publicPath: '/',
filename: '[name].js',
filename: '[name]-[contenthash].js',
sourceMapFilename: '[file].map'
},
optimization: {
moduleIds: 'deterministic',
chunkIds: 'named',
splitChunks: {
chunks: 'initial',
name: 'vendors'
}
chunkIds: isProduction ? 'deterministic' : 'named'
},
performance: {

Loading…
Cancel
Save