1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
-
- 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 } = process.env;
-
- export default defineConfig({
- hash: true,
- antd: {
- dark: true,
- },
- request: {},
- initialState: {},
- model: {},
- layout: {
-
- locale: false,
- siderWidth: 208,
- ...defaultSettings,
- },
-
- locale: false,
-
- targets: {
- ie: 11,
- },
-
- routes,
- access: {},
-
- theme: {
-
-
-
- 'root-entry-name': 'variable',
- },
- ignoreMomentLocale: true,
- proxy: proxy[REACT_APP_ENV || 'dev'],
- manifest: {
- basePath: '/',
- },
-
- fastRefresh: true,
- presets: ['umi-presets-pro'],
- openAPI: [
- {
- requestLibPath: "import { request } from '@umijs/max'",
-
-
- schemaPath: join(__dirname, 'oneapi.json'),
- mock: false,
- },
- {
- requestLibPath: "import { request } from '@umijs/max'",
- schemaPath: 'https://gw.alipayobjects.com/os/antfincdn/CA1dOm%2631B/openapi.json',
- projectName: 'swagger',
- },
- ],
- });
|