123456789101112131415161718192021222324 |
- module.exports = {
- presets: [["@babel/preset-env", { modules: false }]],
- plugins: [
- [
- "import",
- {
- libraryName: "vant",
- libraryDirectory: "es",
- // 指定样式路径
- // style: name => `${name}/style/less`
- style: true,
- },
- "vant",
- ],
- ["@babel/plugin-syntax-dynamic-import"],
- [
- "component",
- {
- libraryName: "element-ui",
- styleLibraryName: "theme-chalk",
- },
- ],
- ],
- };
|