You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
69 lines
1.9 KiB
// https://umijs.org/config/
|
|
import { defineConfig } from 'umi';
|
|
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: {},
|
|
dva: {
|
|
hmr: true,
|
|
},
|
|
layout: {
|
|
// https://umijs.org/zh-CN/plugins/plugin-layout
|
|
locale: false,
|
|
siderWidth: 208,
|
|
...defaultSettings,
|
|
},
|
|
dynamicImport: {
|
|
loading: '@ant-design/pro-layout/es/PageLoading',
|
|
},
|
|
targets: {
|
|
ie: 11,
|
|
},
|
|
// umi routes: https://umijs.org/docs/routing
|
|
routes,
|
|
// Theme for antd: https://ant.design/docs/react/customize-theme-cn
|
|
theme: {
|
|
// 如果不想要 configProvide 动态设置主题需要把这个设置为 default
|
|
// 只有设置为 variable, 才能使用 configProvide 动态设置主色调
|
|
// https://ant.design/docs/react/customize-theme-variable-cn
|
|
'root-entry-name': 'variable',
|
|
},
|
|
// esbuild is father build tools
|
|
// https://umijs.org/plugins/plugin-esbuild
|
|
esbuild: {},
|
|
title: false,
|
|
ignoreMomentLocale: true,
|
|
proxy: proxy[REACT_APP_ENV || 'dev'],
|
|
manifest: {
|
|
basePath: '/',
|
|
},
|
|
// Fast Refresh 热更新
|
|
fastRefresh: {},
|
|
openAPI: [
|
|
{
|
|
requestLibPath: "import { request } from 'umi'",
|
|
// 或者使用在线的版本
|
|
// schemaPath: "https://gw.alipayobjects.com/os/antfincdn/M%24jrzTTYJN/oneapi.json"
|
|
schemaPath: join(__dirname, 'oneapi.json'),
|
|
mock: false,
|
|
},
|
|
{
|
|
requestLibPath: "import { request } from 'umi'",
|
|
// 或者使用在线的版本
|
|
schemaPath: 'http://localhost:8001/api/luigi/swagger/v3/api-docs',
|
|
// schemaPath: join(__dirname, 'swaggerApi.json'),
|
|
mock: false,
|
|
projectName: 'luigi',
|
|
},
|
|
],
|
|
nodeModulesTransform: {
|
|
type: 'none',
|
|
},
|
|
mfsu: {},
|
|
webpack5: {},
|
|
exportStatic: {},
|
|
});
|
|
|