fes.js/docs/reference/plugin/plugins/windicss.md

29 lines
411 B
Markdown
Raw Normal View History

2021-11-18 10:31:01 +08:00
# @fesjs/plugin-windicss
## 介绍
`windicss` 支持
## 启用方式
`package.json` 中引入依赖:
```json
{
"devDependencies": {
"@fesjs/plugin-windicss": "^2.0.0"
},
}
```
## 配置
`.fes.js` 配置文件中添加自定义配置,详细配置[请看](https://windicss.org/integrations/webpack.html)
2022-04-11 20:02:07 +08:00
```js
export default {
2021-11-18 10:31:01 +08:00
windicss: {
root: './',
}
}
```