babel.config.js 380 B

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