.roadhogrc 691 Bytes
Newer Older
1 2 3 4 5 6 7 8
{
  "entry": "src/index.js",
  "env": {
    "development": {
      "extraBabelPlugins": [
        "dva-hmr",
        "transform-runtime",
        "transform-decorators-legacy",
afc163's avatar
afc163 committed
9
        "transform-class-properties",
偏右's avatar
偏右 committed
10
        ["import", { "libraryName": "antd", "style": true }]
11 12 13 14 15 16
      ]
    },
    "production": {
      "extraBabelPlugins": [
        "transform-runtime",
        "transform-decorators-legacy",
afc163's avatar
afc163 committed
17
        "transform-class-properties",
偏右's avatar
偏右 committed
18
        ["import", { "libraryName": "antd", "style": true }]
19 20 21
      ]
    }
  },
nikogu's avatar
nikogu committed
22 23
  "externals": {
    "g2": "G2",
nikogu's avatar
nikogu committed
24 25
    "g-cloud": "Cloud",
    "g2-plugin-slider": "G2.Plugin.slider"
nikogu's avatar
nikogu committed
26
  },
27
  "ignoreMomentLocale": true,
afc163's avatar
afc163 committed
28
  "theme": "./src/theme.js"
29
}