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中文網其他相關文章!