config.js 2.26 KB
Newer Older
ๆ„š้“'s avatar
ๆ„š้“ committed
1
// https://umijs.org/config/
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
2
const os = require('os');
3
const pageRoutes = require('./router.config');
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
4
const webpackplugin = require('./plugin.config');
afc163's avatar
afc163 committed
5
const defaultSettings = require('../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 17 18 19 20 21
    [
      'umi-plugin-react',
      {
        antd: true,
        dva: {
          hmr: true,
        },
        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
        },
22 23
        dynamicImport: true,
        polyfills: ['ie11'],
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
24
        ...(!process.env.TEST && os.platform() === 'darwin'
25 26 27 28
          ? {
              dll: ['dva', 'dva/router', 'dva/saga', 'dva/fetch'],
              hardSource: true,
            }
29
          : {}),
sorrycc's avatar
sorrycc committed
30
      },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
31
    ],
ๆ„š้“'s avatar
ๆ„š้“ committed
32
  ],
ๆ„š้“'s avatar
ๆ„š้“ committed
33
  // ่ทฏ็”ฑ้…็ฝฎ
34
  routes: pageRoutes,
afc163's avatar
afc163 committed
35 36
  // Theme for antd
  // https://ant.design/docs/react/customize-theme-cn
ๆ„š้“'s avatar
ๆ„š้“ committed
37
  theme: {
afc163's avatar
afc163 committed
38
    'primary-color': defaultSettings.primaryColor,
ๆ„š้“'s avatar
ๆ„š้“ committed
39
  },
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  externals: {
    '@antv/data-set': 'DataSet',
  },
  ignoreMomentLocale: true,
  lessLoaderOptions: {
    javascriptEnabled: true,
  },
  cssLoaderOptions: {
    modules: true,
    getLocalIdent: (context, localIdentName, localName) => {
      if (
        context.resourcePath.includes('node_modules') ||
        context.resourcePath.includes('ant.design.pro.less')
      ) {
        return localName;
      }
sorrycc's avatar
sorrycc committed
56 57 58 59 60 61 62 63 64
      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
65
      return localName;
66 67
    },
  },
68 69 70 71 72 73 74 75 76 77 78 79 80 81
  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
82

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
83
  chainWebpack: webpackplugin,
sorrycc's avatar
sorrycc committed
84 85 86
  cssnano: {
    mergeRules: false,
  },
ๆ„š้“'s avatar
ๆ„š้“ committed
87
};