feat: 新增集成tdesign组件的apps

This commit is contained in:
Jin Mao
2025-10-21 10:47:39 +08:00
parent 38f91da5af
commit 2264eaae18
64 changed files with 2957 additions and 0 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,
},
},
},
},
};
});