babel.config.js 217 B

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