GithubHelp home page GithubHelp logo

Comments (1)

mrbone avatar mrbone commented on July 27, 2024

提高 webpack build 时间的方式有几种

  • 升级 node 和 webpack 的版本

loaders

减少需要使用 loaders 的文件数量

{
  test: /\.js$/,
+  include: path.resolve(__dirname, "src"),
  loader: "babel-loader"
}

Bootstrap

plugin/loader 都有启动时间,所以使用的越少越好。

Resolve

减少检索文件的数量同样可以提高速度。如下的方式都可以:

  • 减少 resolve.modules, resolve.extensions, resolve.mainFiles, resolve.descriptionFiles 的数量。
  • 设置 resolve.symlinks: false
  • 设置 resolve.cacheWithContext: false

Dlls

使用 DllPlugin 让不常变化的 module 走单独的构建。

chunk 越小越好

Worker Pool

缓存持久化

使用 cache-loader

Production 建议

SourceMap

关闭 soucemap

特殊工具的

Babel

尽量少使用 presets/plugins

Ts

参考资料

官网

from mrbone.github.io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.