Files

20 lines
335 B
TypeScript
Raw Permalink Normal View History

2026-06-01 14:49:14 +08:00
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig({
2026-06-03 16:01:03 +08:00
base: './',
2026-06-01 14:49:14 +08:00
plugins: [uni()],
server: {
proxy: {
2026-06-05 15:27:29 +08:00
'/server': {
target: 'http://8.160.178.88',
changeOrigin: true
},
'/fastapi': {
target: 'http://8.160.178.88',
changeOrigin: true
2026-06-01 14:49:14 +08:00
}
}
}
})