使用hard-source-webpack-plugin
,利用缓存,可以节省80%的构建时间
输入npm i hard-source-webpack-plugin -D
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
plugins: [
new HardSourceWebpackPlugin(),
]
可以看到node_modules里有缓存
image.png
并且启动的时候会检测变动,缓存大概占了300mb的大小
image.png
编译速度从3分钟左右降到了10秒差不多
网友评论