修正项目结构

This commit is contained in:
lkhsss
2026-01-07 10:36:09 +08:00
parent 91f96a07a3
commit 96673d6fe0
41 changed files with 3366 additions and 1 deletions

13
template/vite.config.js Normal file
View File

@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import { fileURLToPath, URL } from 'node:url'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
})