config.js 2.85 KB
Newer Older
ๆ„š้“'s avatar
ๆ„š้“ committed
1
// https://umijs.org/config/
2 3 4 5
import os from 'os';
import pageRoutes from './router.config';
import webpackplugin from './plugin.config';
import defaultSettings from '../src/defaultSettings';
6

ๆ„š้“'s avatar
ๆ„š้“ committed
7
export default {
ๆ„š้“'s avatar
ๆ„š้“ committed
8 9
  // add for transfer to umi
  plugins: [
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
10 11 12 13 14 15 16
    [
      'umi-plugin-react',
      {
        antd: true,
        dva: {
          hmr: true,
        },
17
        targets: {
ๅๅณ's avatar
ๅๅณ committed
18
          ie: 11,
19
        },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
20 21 22 23 24
        locale: {
          enable: true, // default false
          default: 'zh-CN', // default zh-CN
          baseNavigator: true, // default true, when it is true, will use `navigator.language` overwrite default
        },
25 26 27
        dynamicImport: {
          loadingComponent: './components/PageLoading/index',
        },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
28
        ...(!process.env.TEST && os.platform() === 'darwin'
29
          ? {
chencheng's avatar
chencheng committed
30 31 32 33
              dll: {
                include: ['dva', 'dva/router', 'dva/saga', 'dva/fetch'],
                exclude: ['@babel/runtime'],
              },
34 35
              hardSource: true,
            }
36
          : {}),
sorrycc's avatar
sorrycc committed
37
      },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
38
    ],
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
39 40 41 42 43 44
    [
      'umi-plugin-ga',
      {
        code: 'UA-72788897-6',
      },
    ],
ๆ„š้“'s avatar
ๆ„š้“ committed
45
  ],
46 47 48
  targets: {
    ie: 11,
  },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
49
  define: {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
50
    APP_TYPE: process.env.APP_TYPE || '',
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
51
  },
ๆ„š้“'s avatar
ๆ„š้“ committed
52
  // ่ทฏ็”ฑ้…็ฝฎ
53
  routes: pageRoutes,
afc163's avatar
afc163 committed
54 55
  // Theme for antd
  // https://ant.design/docs/react/customize-theme-cn
ๆ„š้“'s avatar
ๆ„š้“ committed
56
  theme: {
afc163's avatar
afc163 committed
57
    'primary-color': defaultSettings.primaryColor,
ๆ„š้“'s avatar
ๆ„š้“ committed
58
  },
59 60 61
  externals: {
    '@antv/data-set': 'DataSet',
  },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
62 63 64 65 66 67 68
  // proxy: {
  //   '/server/api/': {
  //     target: 'https://preview.pro.ant.design/',
  //     changeOrigin: true,
  //     pathRewrite: { '^/server': '' },
  //   },
  // },
69 70 71 72
  ignoreMomentLocale: true,
  lessLoaderOptions: {
    javascriptEnabled: true,
  },
73
  disableRedirectHoist: true,
74 75 76 77 78
  cssLoaderOptions: {
    modules: true,
    getLocalIdent: (context, localIdentName, localName) => {
      if (
        context.resourcePath.includes('node_modules') ||
79 80
        context.resourcePath.includes('ant.design.pro.less') ||
        context.resourcePath.includes('global.less')
81 82 83
      ) {
        return localName;
      }
sorrycc's avatar
sorrycc committed
84 85 86 87 88 89 90 91 92
      const match = context.resourcePath.match(/src(.*)/);
      if (match && match[1]) {
        const antdProPath = match[1].replace('.less', '');
        const arr = antdProPath
          .split('/')
          .map(a => a.replace(/([A-Z])/g, '-$1'))
          .map(a => a.toLowerCase());
        return `antd-pro${arr.join('-')}-${localName}`.replace(/--/g, '-');
      }
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
93
      return localName;
94 95
    },
  },
96 97 98 99 100 101 102 103 104 105 106 107 108 109
  manifest: {
    name: 'ant-design-pro',
    background_color: '#FFF',
    description: 'An out-of-box UI solution for enterprise applications as a React boilerplate.',
    display: 'standalone',
    start_url: '/index.html',
    icons: [
      {
        src: '/favicon.png',
        sizes: '48x48',
        type: 'image/png',
      },
    ],
  },
sorrycc's avatar
sorrycc committed
110

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
111
  chainWebpack: webpackplugin,
sorrycc's avatar
sorrycc committed
112 113 114
  cssnano: {
    mergeRules: false,
  },
ๆ„š้“'s avatar
ๆ„š้“ committed
115
};