I\'m looking for information on how to delete old webpack chunked files. Here is my current webpack configuration:
var path = require(\'path\'); var webpack
I have solved that problem by adding below in webpack.config.js
webpack.config.js
const { CleanWebpackPlugin } = require('clean-webpack-plugin'); { ... your configs ... plugins: [new CleanWebpackPlugin()] }