Delete unused webpack chunked files

前端 未结 7 1029
庸人自扰
庸人自扰 2021-01-03 19:03

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          


        
7条回答
  •  余生分开走
    2021-01-03 20:05

    There is a clean-webpack-plugin for those purposes, or you can write a simple bash script for npm:

     "scripts": {
        "build": "rm -r dist/* && webpack -p",
        "clean": "rm -r dist/*"
      }
    

提交回复
热议问题