You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
210 B

2 weeks ago
  1. import autoImport from 'unplugin-auto-import/vite'
  2. export default function createAutoImport() {
  3. return autoImport({
  4. imports: [
  5. 'vue',
  6. 'vue-router',
  7. 'pinia'
  8. ],
  9. dts: false
  10. })
  11. }