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