babel.config.js 352 B

123456789101112131415161718192021
  1. module.exports = {
  2. presets: [
  3. ['@vue/app', {
  4. useBuiltIns: 'entry'
  5. }]
  6. ],
  7. plugins: [
  8. '@babel/plugin-proposal-optional-chaining',
  9. [
  10. 'import',
  11. {
  12. libraryName: 'vant',
  13. libraryDirectory: 'es',
  14. // 指定样式路径
  15. style: (name) => `${name}/style/less`
  16. },
  17. 'vant'
  18. ]
  19. ]
  20. }