파일 위치 이동

This commit is contained in:
2023-09-23 14:21:21 +00:00
parent 438df6cd3c
commit 4e629e0b1e
42 changed files with 206 additions and 781 deletions
+17
View File
@@ -0,0 +1,17 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'@util': fileURLToPath(new URL('./server/util', import.meta.url)),
}
}
})