解决Bug

This commit is contained in:
2026-02-11 01:19:50 +08:00
parent b6184b4fec
commit 50ddf01e7c
4 changed files with 1634 additions and 35 deletions

12
vite.config.js Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import { fileURLToPath, URL } from 'node:url'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig({
plugins: [uni()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./', import.meta.url))
}
}
})