chore: 初始化租户端(vben web-ele)

This commit is contained in:
msumshk
2026-01-29 04:21:46 +00:00
commit 819b46fa65
1642 changed files with 133829 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
# Vite Config
项目封装了一层vite配置并集成了一些插件方便在多个包以及应用内复用使用方式如下
## 应用
```ts
// vite.config.mts
import { defineConfig } from '@vben/vite-config';
export default defineConfig(async () => {
return {
application: {},
// vite配置参考vite官方文档进行覆盖
vite: {},
};
});
```
## 包
```ts
// vite.config.mts
import { defineConfig } from '@vben/vite-config';
export default defineConfig(async () => {
return {
library: {},
// vite配置参考vite官方文档进行覆盖
vite: {},
};
});
```