2023-04-01 15:45:51 +08:00

34 lines
560 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-windicss
::: warning 即将废弃
由于 windicss 不怎么维护了,本插件即将废弃,推荐使用 [tailwindcss](https://tailwindcss.com/)。
:::
## 介绍
`windicss` 支持
## 启用方式
`package.json` 中引入依赖:
```json
{
"devDependencies": {
"@fesjs/plugin-windicss": "^2.0.0"
}
}
```
## 配置
`.fes.js` 配置文件中添加自定义配置,详细配置[请看](https://windicss.org/integrations/webpack.html)
```js
export default {
windicss: {
root: './',
},
};
```