babel.config.js 516 B

1234567891011121314151617181920
  1. /*
  2. * @Author: PoJun
  3. * @Date: 2022-02-25 09:15:23
  4. * @LastEditors: PoJun
  5. * @LastEditTime: 2023-05-31 10:43:21
  6. * @Message: Do not edit
  7. */
  8. module.exports = {
  9. presets: ["@vue/cli-plugin-babel/preset"],
  10. plugins: [
  11. [
  12. "import",
  13. {
  14. libraryName: "vxe-table",
  15. style: true, // 样式是否也按需加载
  16. },
  17. ],
  18. ["import", { libraryName: "ant-design-vue", libraryDirectory: "es", style: true }, "ant-design-vue"],
  19. ],
  20. };