issues
search
zxdfe
/
FE-Interview
Every step counts
34
stars
1
forks
source link
第53题:webpack常见的loader有哪些?
#54
Open
zxdfe
opened
2 years ago
zxdfe
commented
2 years ago
用过哪些loader和plugin?
loader
url-loader
babel-loader 把ES6 转为ES5
sass-loader: 将scss/sass转为css
vue-loader: 加载 Vue.js 单文件组件
cache-loader: 可以在一些性能开销较大的 Loader 之前添加,目的是将结果缓存到磁盘里
plugin
html-webpack-plugin
terser-webpack-plugin 支持压缩ES6
clean-webpack-plugin : 目录清理
speed-measure-webpack-plugin :可以看到每个loader和plugin执行耗时 整个打包耗时
webpack-bundle-analyzer : 可视化webpack输出文件的体积
用过哪些loader和plugin?
loader
plugin