splitChunks: {
chunks: 'all',
automaticNameDelimiter: '-',
},
// Keep the runtime chunk separated to enable long term caching
// https://twitter.com/wSokra/status/969679223278505985
runtimeChunk: true,
// Tells webpack to use readable module identifiers for better debugging.
namedModules: isEnvDevelopment,
// Tells webpack to use readable chunk identifiers for better debugging.
namedChunks: true,
// Tells webpack which algorithm to use when choosing chunk ids.
chunkIds: 'named', // Readable ids for better debugging.
// Tells webpack which algorithm to use when choosing module ids.
moduleIds: 'hashed', // Short hashes as ids for better long term caching.
Any ideas? :)
Using webpack v4.