webpack 打包速度优化之dll hard-source-webpack-plugin

从vue-cli和create-react-app中可以知道并没有实用dll,

Webpack 4 的打包性能足够好的,dll已经放弃。

 

直接上代码:

const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');

module.exports = {
  // ......
  plugins: [
    new HardSourceWebpackPlugin() // <- 直接加入这行代码就行
  ]
}

但是实践后发现并没有减少多少, dll 能减少一半时间

探索中。。。。。

 

你可能感兴趣的:(webpack 打包速度优化之dll hard-source-webpack-plugin)