| 123456789101112131415161718 |
- import { defineConfig } from 'umi';
- export default defineConfig({
- define: {
- CurrentEnvironment: 'dev',
- },
- proxy: {
- '/api': {
- // target: 'http://192.168.20.53:8888/',
- // target: 'http://120.55.44.4:8896/',
- // target: 'http://47.96.12.136:8888/',
- target: 'http://47.96.12.136:8896/',
- // target: 'http://oraysmart.com:8889/',
- // target: 'http://oraysmart.com:8888/api',
- // changeOrigin: true,
- // pathRewrite: { '^/api': '' },
- }
- }
- });
|