babel.config.js 228 B

1234567891011121314151617
  1. module.exports = {
  2. "presets": [
  3. '@vue/cli-plugin-babel/preset'
  4. ],
  5. "plugins": [
  6. [
  7. "import",
  8. {
  9. "libraryName": "vant",
  10. "libraryDirectory": "es",
  11. "style": true
  12. }
  13. ]
  14. ]
  15. }