feat: 新增体格检查

This commit is contained in:
王天骄
2026-06-03 16:01:03 +08:00
parent 0650ef1c4a
commit 287812fea5
5 changed files with 488 additions and 7 deletions
+2 -1
View File
@@ -2,11 +2,12 @@ import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig({
base: './',
plugins: [uni()],
server: {
proxy: {
'/backend-api': {
target: 'http://127.0.0.1:8000',
target: 'http://192.168.2.76:8000',
changeOrigin: true,
rewrite: path => path.replace(/^\/backend-api/, '/api')
}