在使用import导入组件时,避免写很多的'../../../'

273 阅读1分钟

在.babelrc文件中添加如下内容:

{
  "presets": [["@babel/preset-env", {
    "targets": {
      "browsers": "> 0.25%, not dead"
    }
  }], "@babel/preset-react"],
  "plugins": [
      ["import", {
          "libraryName": "antd",
          "style": true
      }],
      "@babel/plugin-transform-runtime",
      [
        "babel-plugin-root-import",
        {
          "paths": [{
            "rootPathPrefix": "~",
            "rootPathSuffix": "src/components"
          }, {
            "rootPathPrefix": "#",
            "rootPathSuffix": "src/containers"
          }, {
            "rootPathPrefix": "@",
            "rootPathSuffix": "src"
          }, {
            "rootPathPrefix": "$",
            "rootPathSuffix": "."
          }]
        }
      ]
  ]
}