babel.config.js 215 B

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