Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Sep 18, 2024
1 parent 21490f5 commit ad6b2dc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module.exports = (env) => {
// https://medium.com/hackernoon/the-100-correct-way-to-split-your-chunks-with-webpack-f8a9df5b7758
optimization: {
runtimeChunk: 'single', // create a runtime file to be shared for all generated chunks
moduleIds: 'deterministic', // avoid changing module.id of vendor bundles: https://webpack.js.org/guides/caching/#module-identifiers
splitChunks: {
chunks: 'all', // https://webpack.js.org/plugins/split-chunks-plugin/#splitchunkschunks
maxInitialRequests: Infinity,
Expand Down Expand Up @@ -152,7 +151,6 @@ module.exports = (env) => {
filename: '[name].[contenthash].bundle.js',
chunkFilename: '[id].[contenthash].bundle.js', // lazy-load modules
hashFunction: "xxhash64",
path: path.resolve(__dirname, 'dist'),
publicPath: 'auto',
clean: true
},
Expand Down

0 comments on commit ad6b2dc

Please sign in to comment.