.roadhogrc 728 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{
  "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 }]
      ]
    }
  },
  "theme": {
    "font-size-base": "14px",
    "badge-font-size": "12px",
    "btn-font-size-lg": "@font-size-base",
afc163's avatar
afc163 committed
24 25 26
    "@menu-dark-bg": "#000B14",
    "@menu-dark-submenu-bg": "#00182E",
    "@layout-sider-background": "#000B14",
27 28 29
    "layout-body-background": "#f5f5f5"
  }
}