123456789101112131415161718192021 |
- module.exports = {
- presets: ["@vue/cli-plugin-babel/preset"],
- plugins: [
- [
- "import",
- {
- libraryName: "vant",
- libraryDirectory: "es",
- style: true,
- },
- "vant",
- ],
- [
- "@babel/plugin-transform-react-jsx",
- {
- runtime: "automatic",
- importSource: "@antv/f2",
- },
- ],
- ],
- };
|