Skip to content

SvelteKit

Railway.Website.SvelteKit deploys a SvelteKit app to Railway. It builds the app with SvelteKit’s own Vite pipeline and an in-memory Node adapter. Client assets and prerendered pages bake into a container image; dynamic routes run in the kit handler on port 3000. Alchemy creates a Railway.Project if you omit project, then a Railway.Service from that image. url is the generated *.up.railway.app hostname. Your vite.config.ts loads natively; there is no svelte.config.js to write (kit v3 dropped it) and no adapter to install.

The build integration is not bundled with alchemy. Install @alchemy.run/frontend-frameworks; the resource loads its /sveltekit and /sveltekit/node exports from your project at deploy time. It is only used at build time, so a dev dependency is enough:

Terminal window
bun add -d @alchemy.run/frontend-frameworks

Your project’s vite.config.ts loads natively — your Vite plugins and the kit options in your sveltekit(...) call all apply as usual. Alchemy injects its Node adapter (replacing any adapter you declare, with a warning), so a fresh SvelteKit project deploys as-is. Deploy-specific kit overrides can also be passed via the kit prop, which merges over your sveltekit(...) options — see Kit options below. A project without a vite.config.* works too: the resource falls back to a fully programmatic build.

Declare the site as a module-level const (rather than inline in the Stack):

alchemy.run.ts
import * as Railway from "alchemy/Railway";
export const Website = Railway.Website.SvelteKit("Website");

Omit project to create a Railway.Project under the site namespace. Pass an existing Project to share it with other services.

Yield the site from your Stack and return its URL:

alchemy.run.ts
import * as Alchemy from "alchemy";
import * as Effect from "effect/Effect";
export default Alchemy.Stack(
"MySvelteKitSite",
{
providers: Railway.providers(),
state: Alchemy.localState(),
},
Effect.gen(function* () {
const site = yield* Website;
return { url: site.url };
}),
);

Routes with export const prerender = true are baked into the image and served as static files first; server routes (+server.ts) and server load functions run in the kit handler on the Service.

Process environment is a top-level env map:

alchemy.run.ts
export const Website = Railway.Website.SvelteKit("Website", {
env: {
GREETING: "Hello from alchemy",
API_BASE: "https://api.example.com",
},
});

The values are copied onto process.env before the build (and the dev server) and onto the Service at deploy time, so server code reads the same keys in both modes.

The Kit server runs in Node on the Service, so server routes read the environment from process.env (or kit’s $env/dynamic/private, which is initialized from it):

src/routes/+page.server.ts
export const load = () => {
return { greeting: process.env.GREETING ?? "hello" };
};

Since kit v3 there is no svelte.config.js — kit options live in the sveltekit(...) call in your vite.config.ts, which loads natively. A svelte.config.js on disk is an upstream error.

vite.config.ts
import { sveltekit } from "@sveltejs/kit/vite";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [
tailwindcss(),
sveltekit({
alias: { $lib: "src/lib" },
}),
],
});

The kit prop on the resource is a deploy-time override layer merged over those options (the override wins). It must be JSON-serializable:

alchemy.run.ts
export const Website = Railway.Website.SvelteKit("Website", {
kit: {
paths: { base: "/docs" },
},
});

Don’t set kit.adapter — Alchemy injects its Node adapter (an adapter declared in your sveltekit(...) call is replaced with a warning).

Terminal window
bun alchemy dev

alchemy dev runs SvelteKit’s own Vite dev server — Node SSR with full HMR — instead of deploying; site.url is the local address and no Railway resources are created (service and project are undefined). Wrap the site in Alchemy.remote() to deploy the live Service even during dev.

const site = yield* Railway.Website.SvelteKit("Web", {
domain: "app.example.com",
});

Alchemy attaches a Railway.CustomDomain (targetPort 3000). url becomes https://app.example.com. Point DNS at Railway’s verification records.