Skip to main contentSvelte Kit is a framework for building web applications of all sizes, with a beautiful development experience and flexible filesystem-based routing.
Static build (adapter-static
)
You need to use @sveltejs/adapter-static
(docs) adapter to build a static site.
- Set your site to static
on
(under Build Pack
section).
- Set your
Publish Directory
to /build
Node server (adapter-node
)
You need to use @sveltejs/adapter-node
(docs) adapter to build a node server based SvelteKit app.
- Set your site to static to
off
(under Build Pack
section).
- Set your
Start Command
to node build
.