config.js 2.2 KB
Newer Older
1 2
/* eslint-disable react/destructuring-assignment */

ๆ„š้“'s avatar
ๆ„š้“ committed
3
// https://umijs.org/config/
4
const pageRoutes = require('./router.config');
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
5
const webpackplugin = require('./plugin.config');
6 7
const path = require('path');

ๆ„š้“'s avatar
ๆ„š้“ committed
8
export default {
ๆ„š้“'s avatar
ๆ„š้“ committed
9 10
  // add for transfer to umi
  plugins: [
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
11 12 13 14 15 16 17 18 19 20 21 22
    [
      '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
        },
sorrycc's avatar
sorrycc committed
23
        polyfills: ['ie9'],
24
        ...(!process.env.TEST && require('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,
ๆ„š้“'s avatar
ๆ„š้“ committed
35

ๆ„š้“'s avatar
ๆ„š้“ committed
36 37 38
  theme: {
    'card-actions-background': '#f5f8fa',
  },
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  externals: {
    '@antv/data-set': 'DataSet',
    rollbar: 'rollbar',
  },
  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 65 66
      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, '-');
      } else {
        return localName;
      }
67 68
    },
  },
69 70 71 72 73 74 75 76 77 78 79 80 81 82
  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
83

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