SvelteKit is the official full-stack framework for Svelte. Deploy with SSR, form actions, and server-side load functions on a real server — one command, done.
SvelteKit adapters add a layer of confusion between your code and actually getting it online.
Recommended plan for SvelteKit
Install @sveltejs/adapter-node and set it in svelte.config.js. This produces a self-contained Node server that InstaPods can run directly.
Pages with export const prerender = true are pre-built as HTML. SvelteKit serves them automatically — no special config needed on InstaPods.
Use $env/dynamic/private for secrets in server-side code. Set them in the InstaPods dashboard and they are available at runtime via process.env.
One command. Real server. HTTPS included. No DevOps degree required.
Get Started