20 lines
335 B
TypeScript
20 lines
335 B
TypeScript
import { defineConfig } from 'vite'
|
|
import uni from '@dcloudio/vite-plugin-uni'
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
plugins: [uni()],
|
|
server: {
|
|
proxy: {
|
|
'/server': {
|
|
target: 'http://8.160.178.88',
|
|
changeOrigin: true
|
|
},
|
|
'/fastapi': {
|
|
target: 'http://8.160.178.88',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
})
|