config.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // https://umijs.org/config/
  2. import { defineConfig } from 'umi';
  3. import defaultSettings from './defaultSettings';
  4. import proxy from './proxy';
  5. import routes from './routes';
  6. import darkTheme from '@ant-design/dark-theme';
  7. const { REACT_APP_ENV } = process.env;
  8. export default defineConfig({
  9. hash: true,
  10. antd: {
  11. // dark: true,// 暗黑模式
  12. compact: true, // 紧凑模式
  13. },
  14. dva: {
  15. hmr: true,
  16. },
  17. layout: {
  18. name: '科德管理系统',
  19. locale: false,
  20. siderWidth: 208,
  21. ...defaultSettings,
  22. },
  23. locale: {
  24. // default zh-CN
  25. default: 'zh-CN',
  26. antd: false,
  27. // default true, when it is true, will use `navigator.language` overwrite default
  28. baseNavigator: true,
  29. },
  30. dynamicImport: {
  31. loading: '@ant-design/pro-layout/es/PageLoading',
  32. },
  33. targets: {
  34. ie: 11,
  35. },
  36. // umi routes: https://umijs.org/docs/routing
  37. routes,
  38. // Theme for antd: https://ant.design/docs/react/customize-theme-cn
  39. theme: {
  40. ...darkTheme,
  41. // black: '#f00',//内容区背景颜色
  42. // 'popover-background': '#ff0',//侧边栏背景颜色
  43. // 'component-background': '#fff',//内容容器(比如搜索栏)背景颜色
  44. // 'table-header-bg': '#fff',//表格头部颜色
  45. 'primary-color': defaultSettings.primaryColor, //主题颜色
  46. },
  47. esbuild: {},
  48. title: false,
  49. ignoreMomentLocale: true,
  50. proxy: proxy[REACT_APP_ENV || 'dev'],
  51. manifest: {
  52. basePath: '/',
  53. },
  54. // https://github.com/zthxxx/react-dev-inspector
  55. plugins: ['react-dev-inspector/plugins/umi/react-inspector'],
  56. inspectorConfig: {
  57. // loader options type and docs see below
  58. exclude: [],
  59. babelPlugins: [],
  60. babelOptions: {},
  61. },
  62. resolve: {
  63. includes: ['src/components'],
  64. },
  65. });