1.0.3 • Published 3 years ago

antd-vite-import-plugin v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

antd-vite-import-plugin

本插件适用于react+antd3.x开发体系的前端项目,可以实现antd3.x版本在vite的按需加载,类似babel-plugin-import提供的功能;

使用方式

1.安装插件

npm i antd-vite-import-plugin -D

2.添加插件配置

---vite.config.js---
import antdViteImportPlugin from './antd-vite-import-plugin';
...

plugins: [
	reactRefresh(),
	antdViteImportPlugin(),
    ...
],