mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
30 lines
670 B
TypeScript
30 lines
670 B
TypeScript
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
||
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import AutoImport from 'unplugin-auto-import/vite'
|
||
|
import Components from 'unplugin-vue-components/vite'
|
||
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
base: '',
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
AutoImport({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
Components({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
||
|
},
|
||
|
},
|
||
|
build: {
|
||
|
assetsDir: '',
|
||
|
},
|
||
|
})
|