babel.config.js 224 B

123456789101112131415
  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. 'vant']
  14. ]
  15. }