Files
jnc-admin/apps/web-antd/vite.config.mts

22 lines
506 B
TypeScript
Raw Permalink Normal View History

2026-01-13 19:38:29 +08:00
import { defineConfig } from '@vben/vite-config';
export default defineConfig(async () => {
return {
application: {},
vite: {
server: {
proxy: {
'/api': {
changeOrigin: true,
// mock代理目标地址
// target: 'http://localhost:8888/api',
target: 'http://admin.dsjcq168.cn/',
rewrite: (path) => path, // 可选:确保路径不被修改
ws: true,
},
},
},
},
};
});