babel.config.js 277 B

123456789101112131415
  1. module.exports = {
  2. plugins: [
  3. [
  4. "import",
  5. {
  6. libraryName: "vant",
  7. libraryDirectory: "es",
  8. // 指定样式路径
  9. style: name => `${name}/style/less`
  10. },
  11. "vant"
  12. ],
  13. ["@babel/plugin-syntax-dynamic-import"]
  14. ]
  15. };