Skip to content

Commit 98dd03a

Browse files
authored
Update login redirect destination URL (#15021)
## Summary `comfy.org/login` was redirecting to `cloud.comfy.org/login`, which is not the real sign-in experience — the cloud app's login page lives at `/cloud/login`. One-line redirect destination fix. ## Changes - **What**: the `/login` redirect destination in `apps/website/vercel.json` now points to `https://cloud.comfy.org/cloud/login` (was `https://cloud.comfy.org/login`). ## Review Focus - The redirect is `permanent: false` (307), so the old destination is not pinned in browser or CDN caches — the fix takes effect on deploy for everyone. - `cloud.comfy.org/login` still returns 200 (SPA catch-all), which is why this looked fine in checks while landing users on the wrong page. - Only reference to the old URL in the website app; no other routes point at it. ## Screenshots (if applicable)
1 parent fec0fe2 commit 98dd03a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/website/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
},
8383
{
8484
"source": "/login",
85-
"destination": "https://cloud.comfy.org/login",
85+
"destination": "https://cloud.comfy.org/cloud/login",
8686
"permanent": false
8787
}
8888
]

0 commit comments

Comments
 (0)