Delete unused webpack chunked files

前端 未结 7 1016
庸人自扰
庸人自扰 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:01

    For Windows users

      "scripts": {
        "build": "npm run clean && webpack --mode production",
        "clean": "del /f /s /q dist 1>nul"
      }
    

提交回复
热议问题