You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
722 B
TypeScript
36 lines
722 B
TypeScript
import AutoImport from 'unplugin-auto-import/vite'
|
|
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
|
|
|
export default () => {
|
|
// https://github.com/antfu/unplugin-auto-import
|
|
return AutoImport({
|
|
imports: [
|
|
'vue',
|
|
'vue-router',
|
|
'vue-i18n',
|
|
'vue/macros',
|
|
'@vueuse/head',
|
|
'@vueuse/core',
|
|
{
|
|
'naive-ui': [
|
|
'useDialog',
|
|
'useMessage',
|
|
'useNotification',
|
|
'useLoadingBar',
|
|
],
|
|
},
|
|
],
|
|
dts: 'src/auto-imports.d.ts',
|
|
dirs: [
|
|
'src/composables',
|
|
'src/stores',
|
|
'src/types',
|
|
'src/api/**',
|
|
],
|
|
vueTemplate: true,
|
|
resolvers: [
|
|
NaiveUiResolver(),
|
|
],
|
|
})
|
|
}
|