Option A — Vercel (recommended)
1
Download code
From Codebase, click Download Code.
2
Create a repo
Push the project to a new GitHub repository.
3
Import to Vercel
In Vercel, New Project → Import Git Repository. Accept defaults or set
your framework if detected.
4
Set environment variables
Add any required env vars (API keys, Supabase URL, etc.).
5
Add your domain
In Domains, add
yourdomain.com and follow the DNS instructions
(usually a CNAME or A record).Option B — Cloudflare Pages
1
Connect your repo
Create a Pages project and link your GitHub repo.
2
Build settings
Use the detected framework or set the build command and output directory.
3
Add domain
Attach your custom domain and update DNS as instructed.
Option C — GitHub Pages (static sites)
1
Build locally
Generate a static build if your project supports it.
2
Publish to `gh-pages`
Push the build output to the
gh-pages branch and enable Pages in repo
settings.