# webpack 性能优化

# 打包速度

使用 hard-source-webpack-plugin 替代 dll,为什么不用 dll 了,可以查看此篇文章

yarn add hard-source-webpack-plugin --dev
1
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');

module.exports = {
  // ......
  plugins: [
    new HardSourceWebpackPlugin() // <- 直接加入这行代码就行
  ]
}
1
2
3
4
5
6
7
8