2023-03-01 16:29:42 +08:00

31 lines
530 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# @fesjs/plugin-swc
## 介绍
webpack 启用 swc构建速度更快
## 启用方式
`package.json` 中引入依赖:
```json
{
"dependencies": {
"@fesjs/fes": "^3.0.0",
"@fesjs/plugin-swc": "^3.0.0"
},
}
```
## 编译时配置
传对象时使用swc进行编译和压缩[loader配置](https://swc.rs/docs/configuration/swcrc)默认usage模式。
```js
export default {
swc: {
loader: {
env: {
coreJs: '3.27',
},
}
},
}
```