config.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. const { REACT_APP_ENV } = process.env;
  7. export default defineConfig({
  8. hash: true,
  9. antd: {},
  10. dva: {
  11. hmr: true,
  12. },
  13. layout: {
  14. name: 'Ant Design Pro',
  15. locale: false,
  16. siderWidth: 208,
  17. ...defaultSettings,
  18. },
  19. locale: {
  20. // default zh-CN
  21. default: 'zh-CN',
  22. antd: false,
  23. // default true, when it is true, will use `navigator.language` overwrite default
  24. baseNavigator: true,
  25. },
  26. dynamicImport: {
  27. loading: '@ant-design/pro-layout/es/PageLoading',
  28. },
  29. targets: {
  30. ie: 11,
  31. },
  32. // umi routes: https://umijs.org/docs/routing
  33. routes,
  34. // Theme for antd: https://ant.design/docs/react/customize-theme-cn
  35. theme: {
  36. 'primary-color': defaultSettings.primaryColor,
  37. },
  38. esbuild: {},
  39. title: false,
  40. ignoreMomentLocale: true,
  41. proxy: proxy[REACT_APP_ENV || 'dev'],
  42. manifest: {
  43. basePath: '/',
  44. },
  45. // https://github.com/zthxxx/react-dev-inspector
  46. plugins: ['react-dev-inspector/plugins/umi/react-inspector'],
  47. inspectorConfig: {
  48. // loader options type and docs see below
  49. exclude: [],
  50. babelPlugins: [],
  51. babelOptions: {},
  52. },
  53. resolve: {
  54. includes: ['src/components'],
  55. },
  56. });