Webpack 5 通过确定性的 Chunk ID、模块 ID 和导出 ID 实现长期缓存,这意味着相同的输入将始终产生相同的输出。这样,当您的用户再次访问更新后的网站时,浏览器可以重用旧的缓存,而不用重新下载所有资源。
// webpack.config.js module.exports = { // ... output: { // Use contenthash to ensure that the file name is associated with the content filename: '[name].[contenthash].js', chunkFilename: '[name].[contenthash].chunk.js', // Configure the asset hash to ensure long-term caching assetModuleFilename: '[name].[contenthash][ext][query]', // Use file system cache cache: { type: 'filesystem', }, }, // ... };
Webpack 5 增强了 Tree Shaking 的效率,特别是对 ESM 的支持。
// package.json { "sideEffects": false, // Tell Webpack that this package has no side effects and can safely remove unreferenced code } // library.js export function myLibraryFunction() { // ... } // main.js import { myLibraryFunction } from './library.js';
Webpack 5 的 concatenateModules 选项可以组合小模块来减少 HTTP 请求的数量。不过这个功能可能会增加内存消耗,所以使用时需要权衡一下:
// webpack.config.js module.exports = { // ... optimization: { concatenateModules: true, // Defaults to true, but may need to be turned off in some cases }, // ... };
Webpack 5 不再自动为 Node.js 核心模块注入 polyfill。开发者需要根据目标环境手动导入:
// If you need to be compatible with older browsers, you need to manually import polyfills import 'core-js/stable'; import 'regenerator-runtime/runtime'; // Or use babel-polyfill import '@babel/polyfill';
使用缓存:配置cache.type:'filesystem'使用文件系统缓存来减少重复构建。
SplitChunks 优化:根据项目需求调整 optimization.splitChunks,例如:
// webpack.config.js module.exports = { // ... optimization: { splitChunks: { chunks: 'all', minSize: 10000, // Adjust the appropriate size threshold maxSize: 0, // Allow code chunks of all sizes to be split }, }, // ... };
模块解析优化:通过resolve.mainFields和resolve.modules配置减少模块解析的开销。
并行编译:使用threads-loader或worker-loader并行处理任务,加快编译速度。
代码分割:使用动态导入(import())按需加载代码,减少初始加载时间。
// main.js import('./dynamic-feature.js').then((dynamicFeature) => { dynamicFeature.init(); });
// webpack.config.js module.exports = { // ... experiments: { outputModule: true, // Enable output module support }, // ... };
虽然Webpack 5本身对Tree shake进行了优化,但开发者可以通过一些策略进一步提高其效果。确保您的代码遵循以下原则:
源映射对于调试至关重要,但它也会增加构建时间和输出大小。您可以根据环境调整Source Map类型:
// webpack.config.js module.exports = { // ... output: { // Use contenthash to ensure that the file name is associated with the content filename: '[name].[contenthash].js', chunkFilename: '[name].[contenthash].chunk.js', // Configure the asset hash to ensure long-term caching assetModuleFilename: '[name].[contenthash][ext][query]', // Use file system cache cache: { type: 'filesystem', }, }, // ... };
// package.json { "sideEffects": false, // Tell Webpack that this package has no side effects and can safely remove unreferenced code } // library.js export function myLibraryFunction() { // ... } // main.js import { myLibraryFunction } from './library.js';
以上是Webpack新特性详解及性能优化实践的详细内容。更多信息请关注PHP中文网其他相关文章!