缓存
如果开启了缓存,node_modules 文件加下,会有一个 .cache 文件夹目录。
babel-loader 开启缓存
1 2 3 4 5 6 7 8 9
| module: { rules: [ { test: /\.js$/, use: 'babel-loader?cacheDirectory=true' } ] }
|
terser-webpack-plugin
1 2 3 4 5 6 7 8
| optimization: { minimizer: [ new TerserPlugin({ parallel: true, cache: true, }), ], },
|
使用 cache-loader 或者 hard-source-webpack-plugin
1 2 3 4 5 6 7 8 9 10
| const HardSourceWebpackPlugin = require('hard-source-webpack-plugin'); module.exports = { output: { filename: 'bundle.js' }, plugins: [ new HardSourceWebpackPlugin() ] };
|
参考
-------------本文结束感谢您的阅读-------------