Fix chunk IDs and source map file names

(cherry picked from commit bb8fed94eb2c44040031643e8c20ff72de759535)
This commit is contained in:
Mark McDowall 2023-07-18 09:54:35 -07:00 committed by Bogdan
parent 0bf562b22e
commit 1d1a90537a
1 changed files with 2 additions and 6 deletions

View File

@ -67,17 +67,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: {