File size: 318 Bytes
c90ac2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"rewrites": [
{
"source": "/api/(.*)",
"destination": "https://YOUR_BACKEND_URL.render.com/$1"
},
{
"source": "/ws/(.*)",
"destination": "wss://YOUR_BACKEND_URL.render.com/ws/$1"
}
],
"framework": "vite",
"buildCommand": "npm run build",
"outputDirectory": "dist"
}
|