Spaces:
Running
Running
File size: 577 Bytes
166871c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import { defineConfig } from "vite";
export default defineConfig({
server: {
port: 5173,
proxy: {
"/openai/v1/realtime": {
target: "https://api.openai.com",
changeOrigin: true,
secure: true,
rewrite: (p) => p.replace(/^\/openai/, ""),
ws: true,
},
"/openai/v1/chat/completions": {
target: "https://api.openai.com",
changeOrigin: true,
secure: true,
rewrite: (p) => p.replace(/^\/openai/, ""),
},
},
},
build: {
outDir: "dist",
target: "es2022",
},
});
|