Host an exported Next.js site in seconds
Next.js can export your site to plain static files. Those files are exactly what snapy serves, so you can put an exported Next.js site online for free, with no Git and no build pipeline on the hosting side.
How to host your Next.js site
- In
next.config.js, setoutput: 'export'. - Run
next build. Next.js creates anoutfolder of static files. - Zip the
outfolder, drop it in the box above, and click Get my link.
Your site is live on a clean link right away.
Static export only (worth knowing)
snapy serves static files, so it is a great fit for static (exported) Next.js sites: marketing pages, docs, blogs, portfolios, and landing pages. It does not run a Node server, so features that need one (server-side rendering, API routes, server actions) will not work here. For those, a server host like Vercel is the right tool. For a fast, free link to a static Next.js site, snapy is the simplest path.
Tips
- Pick a name like
docs.snapy.page. - Add a password or an expiry date if needed.
Using plain React instead? See how to host a React app free. Plain HTML? See free HTML hosting.
