修复了一些Bug

This commit is contained in:
2026-09-02 19:52:25 +08:00
parent 419c7bc660
commit 155818bbc7
6 changed files with 263 additions and 11 deletions

View File

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