This commit is contained in:
2026-01-17 15:57:06 +08:00
parent cae4d9eb05
commit 8e5eea02f1
19 changed files with 11662 additions and 88 deletions

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
server: {
port: 3000,
open: true
}
})