2025-04-01 09:00:33 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import uni from '@dcloudio/vite-plugin-uni'
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [uni()],
|
|
|
|
|
server: {
|
|
|
|
|
proxy: {
|
|
|
|
|
// 在此处编写代理规则
|
|
|
|
|
'/api': {
|
2025-04-02 14:40:35 +08:00
|
|
|
target: 'http://192.168.2.135:11997', // 梁超
|
2025-04-01 09:00:33 +08:00
|
|
|
changeOrigin: true,
|
|
|
|
|
rewrite: (path) => {
|
|
|
|
|
return path.replace(/\/api/, '')
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
})
|