feat(web): add antdv-next model

This commit is contained in:
Bin
2026-02-08 23:00:19 +08:00
parent f4dfb68b7b
commit 8cadad0a1e
93 changed files with 4531 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
import { defineConfig } from '@vben/vite-config';
export default defineConfig(async () => {
return {
application: {},
vite: {
server: {
proxy: {
'/api': {
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
// mock代理目标地址
target: 'http://localhost:5320/api',
ws: true,
},
},
},
},
};
});