同步代码

This commit is contained in:
GaoHao
2025-02-07 14:49:20 +08:00
commit 0740c3f349
1141 changed files with 167372 additions and 0 deletions

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig({
plugins: [
uni()
],
server: {
proxy: {
'/server3': {
target: 'http://101.37.12.135:8080', // 目标服务
changeOrigin: true,
rewrite: path => path.replace(/^\/server3/, ''),
}
}
}
})