How to host your v0 website
v0 generates React (often Next.js) components and pages. To host the result yourself, export the code and produce a static build, then publish that output on SiteDrop.
Publish your site free →Get it live in 4 steps
- Export or copy your project code from v0.
- Run the build to produce a static output folder (for a static export this is typically out or dist).
- Zip that folder's contents, keeping index.html at the top level.
- Upload the zip to SiteDrop.
What file types work
v0 generates React (often Next.js) components. To host them yourself you produce a STATIC build — a Next static export (the out folder) or a Vite dist — which is plain HTML/CSS/JS and uploads directly. Next features that need a server (SSR, API routes, server actions) won't run on static hosting; a marketing or portfolio export is fine.
What breaks — and how to fix it
- My upload 404s or is blank.
You likely uploaded source or a server build. For Next, set output: 'export' and build so you get an out/ folder, then zip its contents with index.html at the top level.
- next/image or a font isn't loading.
next/image's optimizer needs a server. Use unoptimized images (or a plain <img>) for a static export, and self-host fonts so nothing depends on a build server.
- API routes or server actions don't respond.
Those require a Node server. Keep dynamic parts on a platform that runs Next, and publish the static marketing pages here.
SiteDrop vs just using Netlify
Netlify (like Vercel) can run the Next build server-side. If your v0 output is a static site you don't need that machinery — SiteDrop hosts the exported out folder as a zip, giving you an owned URL in a minute without configuring a framework preset or connecting a repo.
v0 hosting — FAQ
My v0 project uses server features — will static hosting work?
SiteDrop serves static files, so server-rendered or API features won't run. For a marketing/portfolio site, build a static export and upload that; keep server-dependent apps on a platform that runs a backend.
Ready to publish your v0 site?
Upload your .zip and get a live, shareable link in under a minute. Free 24-hour preview, no card needed.
Publish it now →