Astro ships zero JavaScript by default and builds lightning-fast content sites. Deploy the dist/ directory with one command - real server, HTTPS, custom domains.
Astro builds in seconds but getting the output online with proper HTTPS, domains, and room to grow takes longer than it should.
Recommended plan for Astro
Run npm run build on your machine or in CI. Then deploy the dist/ directory to InstaPods. Astro outputs static HTML, CSS, and assets that nginx serves directly.
Astro generates a 404.html if you create a src/pages/404.astro page. InstaPods nginx serves it automatically for missing routes.
Need server-side rendering later? Switch to --preset nodejs and add the @astrojs/node adapter. Same pod, same URL, no migration hassle.
One command. Real server. HTTPS included. No DevOps degree required.
Start Free