You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
weave dev can now proxy API calls to your backend, so they stay same-origin (no CORS,
and HttpOnly cookie auth just works). Config it like Vite/Angular/Next:
A request is proxied when its path equals a key or starts with key + '/' (so /api matches /api and /api/x, but not /apiary); the first match wins and runs before Weave's own dev
routes. The request (method/headers/body/query) is streamed to the backend and the response
piped back unchanged, so Cookie and Set-Cookie pass through both ways; changeOrigin
(default true) sets the forwarded Host, and rewrite rewrites the path only (the query is
preserved). An unreachable backend returns 502 without crashing the dev server. Dev-only —
production builds are already same-origin. Built on Node's http/https, no new dependencies.