.babelrc 292 B

12345678910111213
  1. // .babelrc or babel-loader option
  2. {
  3. "plugins": [
  4. [
  5. "import",
  6. {
  7. "libraryName": "ant-design-vue",
  8. "libraryDirectory": "es",
  9. "style": "css"
  10. }
  11. ] // `style: true` 会加载 less 文件
  12. ]
  13. }