发布时间:2023-04-22 17:00
在前端的性能优化中,es6 推出了tree shaking机制,tree shaking就是当我们在项目中引入其他模块时,他会自动将我们用不到的代码,或者永远不会执行的代码摇掉,在Uglify阶段查出,不打包到bundle中。
只支持ES6 Module代码。在production 环境默认开启。
1.首先,要明确一点:Tree Shaking 只支持 ESM 的引入方式,不支持 Common JS 的引入方式。
提示:如果想要做到tree shaking,在引入模块时就应该避免将全部引入,应该引入局部才可以触发tree shaking机制
代码如下(示例):
// Import everything (not tree-shaking)
import lodash from 'lodash';
// Import named export (can be tree-shaking)
import { debounce } from 'lodash';
// Import the item directly (can be tree-shaking)
import debounce from 'lodash/lib/debounce';
1、开发环境配置tree shaking
// webpack.config.js
module.exports = {
// ...
mode: 'development',
optimization: {
usedExports: true,
}
};
// webpack.config.js 生产环境下只需要把mode配置成‘production’即可
module.exports = {
// ...
mode: 'production',
};
{
"name": "webpack-demo-1",
"sideEffects": false,
// ...
}
// 列子:
// All files have side effects, and none can be tree-shaken
{
"sideEffects": true
}
// No files have side effects, all can be tree-shaken
{
"sideEffects": false
}
// Only these files have side effects, all other files can be tree-shaken, but these must be kept
{
"sideEffects": [
"./src/file1.js",
"./src/file2.js"
]
}
/* reset.css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
background-color: #eaeaea;
}
// main.js
import "./styles/reset.css"
// webpack.config.js
module.exports = {
// ...
module: {
rules: [
{
test: /\\.css$/i,
use: ["style-loader", "css-loader"],
sideEffects: true
}
]
},
};
tensorboard 卸载后再安装报错ValueError: Duplicate plugins for name projector
从零开始实现lmax-Disruptor队列(五)Disruptor DSL风格API原理解析
async_await封装JQuery的Ajax请求,解决多层回调问题
Anaconda+PytorchGPU版本+CUDA+CUNN的下载与安装使用
MyBatis-Plus:MyBatis-Plus的具体介绍与使用
Focal and Global Knowledge Distillation for Detectors
(详解)Vue设置select下拉框的默认选项(解决select空白的bug)