Files
fe_portal_frontend/config/config.dev.ts

10 lines
192 B
TypeScript
Raw Normal View History

2025-06-16 09:25:19 +08:00
import { defineConfig } from 'umi';
import proxy from './proxy';
export default defineConfig({
proxy: proxy['dev'],
define: {
2025-06-30 14:16:17 +08:00
UPLOAD_URL: '/upload',
REQUEST_BASE: '/api',
2025-06-16 09:25:19 +08:00
},
});