|
12345678910111213141516171819202122232425 |
- import { defineConfig } from 'umi';
-
- export default defineConfig({
- nodeModulesTransform: {
- type: 'none',
- },
- // routes: [
- // { path: '/', component: '@/pages/index' },
- // ],
- fastRefresh: {},
- theme: {
- "primary-color": "#7850FF",
- "app-header-height": "48px"
- },
- proxy: {
- '/api': {
- target: 'http://139.198.180.242:9003',
- // target: 'http://www.lockingos.org:9003',
- //target: 'http://192.168.8.114:8082',
- changeOrigin: true,
- secure: false,
- }
- }
-
- });
|