initial project

This commit is contained in:
2026-06-25 22:39:06 +08:00
commit 5a5ac2fcde
110 changed files with 8693 additions and 0 deletions

13
vite.config.js Normal file
View File

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