mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-01-07 16:09:43 +08:00
16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
|
import { fileURLToPath, URL } from 'url'
|
||
|
|
||
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [vue(), vueJsx()],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
}
|
||
|
}
|
||
|
})
|