25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
210 B

2 주 전
  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. }