vite_vite.config.js配置代理与websocket代理

发布时间 2023-09-26 22:57:40作者: Steperouge
export default defineConfig({
    server: {
        proxy: {
            "/proxy": {
                target: "http://121.10.140.87", // 线上服务器IP地址
                changeOrigin: true,
                ws: true,
                rewrite: (path) => path.replace(/^\/proxy/, ""), // 路径转写
            },
            "/wsproxy": {
                target: "ws://121.10.140.87", // 线上服务器websocket地址
                changeOrigin: true,
                ws: true,
                rewrite: (path) => path.replace(/~\/wsproxy/, "") // 路径转写
            }
        },
    },
})