babel.config.js 190 B

1234567891011121314
  1. module.exports = {
  2. presets: [
  3. '@vue/app'
  4. ],
  5. plugins: [
  6. [
  7. 'import',
  8. {
  9. libraryName: 'mand-mobile',
  10. libraryDirectory: 'components'
  11. }
  12. ]
  13. ]
  14. }