123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- import { defineConfig } from '@umijs/max';
- import { join } from 'path';
- import defaultSettings from './defaultSettings';
- import proxy from './proxy';
- import routes from './routes';
- const { REACT_APP_ENV = 'dev' } = process.env;
- type Env = 'dev' | 'prod';
- const API_URL: Record<Env, string> = {
- dev: 'http://localhost:3000',
- prod: 'https://lvyin20.tv',
- };
- const PUBLIC_PATH: string = '/';
- export default defineConfig({
- define: {
-
- API_URL: API_URL[REACT_APP_ENV as Env] || API_URL.dev,
- },
-
- hash: true,
- publicPath: PUBLIC_PATH,
-
-
-
-
-
-
- routes,
-
- theme: {
-
-
- 'root-entry-name': 'variable',
- },
-
- ignoreMomentLocale: true,
-
- proxy: proxy[REACT_APP_ENV as keyof typeof proxy],
-
- fastRefresh: true,
-
-
- model: {},
-
- initialState: {},
-
- title: '球赛预测管理后台',
- layout: {
- locale: true,
- ...defaultSettings,
- },
-
- moment2dayjs: {
- preset: 'antd',
- plugins: ['duration'],
- },
-
- locale: {
-
- default: 'zh-CN',
- antd: true,
-
- baseNavigator: true,
- },
-
- antd: {},
-
- request: {},
-
- access: {},
-
- headScripts: [
-
- { src: join(PUBLIC_PATH, 'scripts/loading.js'), async: true },
- ],
-
- presets: ['umi-presets-pro'],
- mfsu: {
- strategy: 'normal',
- },
- esbuildMinifyIIFE: true,
- requestRecord: {},
- });
|