For the following config in webpack4,
optimization: {
splitChunks: {
chunks: 'all'
},
runtimeChunk: true
}
In the webpack output stats, there is a list of files needed for each entrypoint like
Entrypoint about = runtime~about-b126ba8d5183247aa513.js vendors~about~home-bf6fa999743882049ea0.js about-f2320ebef52984b8b8a2.js
Entrypoint home = runtime~home-6b634e8923dcf64c8687.js vendors~about~home-bf6fa999743882049ea0.js static/css/home.3a775e54.chunk.css home-3a775e546f2420ba6807.js static/css/home.3a775e54.chunk.css.map
I am wondering is there any way to support this format in manifest plugin output?
For the following config in webpack4,
In the webpack output stats, there is a list of files needed for each entrypoint like
I am wondering is there any way to support this format in manifest plugin output?