SvelteKit on Vercel
Learn how to use Vercel's features with SvelteKitSvelteKit is a frontend framework that enables you to build Svelte applications with modern techniques, such as Server-Side Rendering, automatic code splitting, and advanced routing.
You can deploy your SvelteKit projects to Vercel with zero configuration, enabling you to use Preview Deployments, Web Analytics, Serverless Functions, and more.
To get started with SvelteKit on Vercel:
- If you already have a project with SvelteKit, install Vercel CLI and run the
vercel
command from your project's root directory - Clone one of our SvelteKit example repos to your favorite git provider and deploy it on Vercel with the button below:
- Or, choose a template from Vercel's marketplace:
Vercel deployments can integrate with your git provider to generate preview URLs for each pull request you make to your SvelteKit project.
When you create a new SvelteKit project with npm create svelte@latest
, it installs adapter-auto
by default. This adapter detects that you're deploying on Vercel and installs the @sveltejs/adapter-vercel
plugin for you at build time.
We recommend installing the @sveltejs/adapter-vercel
package yourself. Doing so will ensure version stability, slightly speed up your CI process, and allows you to configure default deployment options for all routes in your project.
The following instructions will guide you through adding the Vercel adapter to your SvelteKit project.
You can add the Vercel adapter to your SvelteKit project by running the following command:
pnpm i @sveltejs/adapter-vercel
Add the Vercel adapter to your
svelte.config.js
file, which should be at the root of your project directory.You cannot use TypeScript for your SvelteKit config file.
In your
svelte.config.js
file, importadapter
from@sveltejs/adapter-vercel
, and add your preferred options. The following example shows the default configuration, which uses the Node.js runtime (which run on Vercel Serverless Functions).svelte.config.jsimport adapter from '@sveltejs/adapter-vercel'; export default { kit: { adapter: adapter(), }, };
Learn more about configuring your Vercel deployment in our configuration section below.
You can configure how your SvelteKit project gets deployed to Vercel at the project-level and at the route-level.
Changes to the config
object you define in svelte.config.js
will affect the default settings for routes across your whole project. To override this, you can export a config
object in any route file.
The following is an example of a svelte.config.js
file that will deploy using server-side rendering in Vercel's Node.js 18.x serverless runtime:
import adapter from '@sveltejs/adapter-vercel';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
runtime: 'nodejs18.x',
}),
},
};
export default config;
You can also configure how individual routes deploy by exporting a config
object. The following is an example of a route that will deploy on Vercel's Edge runtime:
import { PageServerLoad } from './$types';
export const config = {
runtime: 'edge',
};
export const load = ({ cookies }): PageServerLoad<any> => {
// Load function code here
};
Learn about all the config options available in the SvelteKit docs. You can also see the type definitions for config object properties in the SvelteKit source code.
SvelteKit's docs have a comprehensive list of all config options available to you. This section will cover a select few options which may be easier to use with more context.
By default, your SvelteKit routes get bundled into one Serverless or Edge Function when you deploy your project to Vercel. This configuration typically reduces how often your users encounter cold starts.
In most cases, there is no need to modify this option.
Setting split: true
in your Svelte config will cause your SvelteKit project's routes to get split into separate Edge or Serverless Functions.
Splitting your Functions is not typically better than bundling them. You may want to consider setting split: true
if you're experiencing either of the following issues:
- You have exceeded the Function size limit for the runtime you're using. Batching too many routes into a single Function could cause you to exceed Function size limits for your Vercel account. See our Serverless Function size limits and Edge Function size limits to learn more.
- Your app is experiencing abnormally long cold start times. Batching Serverless Functions into one Function will reduce how often users experience cold starts. It can also increase the latency they experience when a cold start is required, since larger functions tend to require more resources. This can result in slower responses to user requests that occur after your Function spins down.
Your SvelteKit routes get deployed to Vercel's Node.js (Serverless) runtime by default.
You can edit your config to deploy as Edge Functions instead by setting runtime: 'edge'
in your config object.
Edge and Serverless functions offer a cost-effective, scalable solution for serving personalized content to your visitors, both dynamically and statically.
See our Functions comparison table to better understand which runtime you should choose.
Choosing a region allows you to reduce latency for requests to Serverless and Edge routes. If you choose a Function region geographically near dependencies, or nearest to your visitor, you can reduce your Functions' latency.
By default, your Serverless Functions will be deployed in Washington, D.C., USA, or iad1
. Adding a region ID to the regions
array will deploy your Serverless Functions there. See our Serverless Function regions docs to learn how to override this settings. Only Enterprise customers can deploy Serverless Functions to multiple regions.
Edge Functions get deployed globally, and will invoke in the region nearest to each visitor by default. If your Edge Functions depend on data sources far from the user, this can add latency to the request.
Adding a valid region ID to your regions
array will cause your Edge Function to always invoke in the specified region, preventing them from triggering far away from their dependencies. Support for multiple edge regions is in progress.
See our Edge Function regions docs to learn more.
Vercel supports streaming API responses over time with SvelteKit, allowing you to render parts of the UI early, then render the rest as data becomes available. Doing so lets users interact with your app before the full page loads, improving their perception of your app's speed. Here's how it works:
- SvelteKit enables you to use a
+page.server.ts
file to fetch data on the server, which you can access from a+page.svelte
file located in the same folder - You fetch data in a
load
function defined in+page.server.ts
. This function returns an object- Top-level properties that return a promise will resolve before the page renders
- Nested properties that return a promise will stream
The following example demonstrates a load
function that will stream its response to the client. To simulate delayed data returned from a promise, it uses a sleep
method.
export const config = {
// Use 'nodejs18.x' for Serverless
runtime: 'edge',
};
function sleep(value: any, ms: number) {
// Use this sleep function to simulate
// a delayed API response.
return new Promise((fulfill) => {
setTimeout(() => {
fulfill(value);
}, ms);
});
}
export function load(event): PageServerLoad<any> {
// Get some location data about the visitor
const ip = event.getClientAddress();
const city = decodeURIComponent(
event.request.headers.get('x-vercel-ip-city') ?? 'unknown',
);
return {
topLevelExample: sleep({ data: "This won't be streamed" }, 2000)
// Stream the location data to the client
locationData: {
details: sleep({ ip, city }, 1000),
},
};
}
You could then display this data by creating the following +page.svelte
file in the same directory:
<script lang="ts">
import type { PageData } from './$types'
export let data: PageData;
</script>
<h1><span>Hello!</span></h1>
<div class="info">
{#await data.locationData.details}
<p>streaming delayed data from the server...</p>
{:then details}
<div>
<p>City is {details.city}</p>
<p>And IP is: {details.ip} </p>
</div>
{/await}
</div>
To summarize, Streaming with SvelteKit on Vercel:
- Enables you to stream UI elements as data loads
- Supports Edge and Serverless streaming
- Improves perceived speed of your app
Learn more about Streaming on Vercel.
Server-Side Rendering (SSR) allows you to render pages dynamically on the server. This is useful for pages where the rendered data needs to be unique on every request. For example, verifying authentication or checking the geolocation of an incoming request.
Vercel offers SSR that scales down resource consumption when traffic is low, and scales up with traffic surges. This protects your site from accruing costs during periods of no traffic or losing business during high-traffic periods.
SvelteKit projects are server-side rendered by default. You can configure individual routes to prerender with the prerender
page option, or use the same option in your app's root +layout.js
or +layout.server.js
file to make all your routes prerendered by default.
While server-side rendered SvelteKit apps do support middleware, SvelteKit does not support URL rewrites from middleware.
See the SvelteKit docs on prerendering to learn more.
To summarize, SSR with SvelteKit on Vercel:
- Scales to zero when not in use
- Scales automatically with traffic increases
- Has zero-configuration support for
Cache-Control
headers, includingstale-while-revalidate
- Framework-aware infrastructure enables switching rendering between Edge/Node.js runtimes
Vercel provides a set of System Environment Variables that our platform automatically populates. For example, the VERCEL_GIT_PROVIDER
variable exposes the Git provider that triggered your project's deployment on Vercel.
These environment variables will be available to your project automatically, and you can enable or disable them in your project settings on Vercel. See our Environment Variables docs to learn how.
SvelteKit allows you to import environment variables, but separates them into different modules based on whether they're dynamic or static, and whether they're private or public. For example, the '$env/static/private'
module exposes environment variables that don't change, and that you should not share publicly.
System Environment Variables are private and you should never expose them to the frontend client. This means you can only import them from '$env/static/private'
or '$env/dynamic/private'
.
The example below exposes VERCEL_COMMIT_REF
, a variable that exposes the name of the branch associated with your project's deployment, to a load
function for a Svelte layout:
import { LayoutServerLoad } from './types';
import { VERCEL_COMMIT_REF } from '$env/static/private';
type DeploymentInfo = {
deploymentGitBranch: string;
};
export function load(): LayoutServerLoad<DeploymentInfo> {
return {
deploymentGitBranch: 'Test',
};
}
You could reference that variable in a corresponding layout as shown below:
<script>
/** @type {import('./$types').LayoutData} */
export let data;
</script>
<p>This staging environment was deployed from {data.deploymentGitBranch}.</p>
SvelteKit projects with edge: true
enabled can only use Environment
Variables listed in the envVarsInUse
config property.
To summarize, the benefits of using Environment Variables with SvelteKit on Vercel include:
- Access to vercel deployment information, dynamically or statically, with our preconfigured System Environment Variables
- Access to automatically-configured environment variables provided by integrations for your preferred services
- Searching and filtering environment variables by name and environment in Vercel's dashboard
Learn more about Environment Variables
Incremental Static Regeneration allows you to create or update content without redeploying your site. When you deploy a route with ISR, Vercel caches the page to serve it to visitors statically, and rebuilds it on a time interval of your choice. ISR has three main benefits for developers: better performance, improved security, and faster build times.
See our ISR docs to learn more.
To deploy a SvelteKit route with ISR:
- Export a
config
object with anisr
property. Its value will be the number of seconds to wait before revalidating - To enable on-demand revalidation, add the
bypassToken
property to theconfig
object. Its value gets checked whenGET
orHEAD
requests get sent to the route. If the request has ax-prerender-revalidate
header with the same value asbypassToken
, the cache will be revalidated immediately
The following example demonstrates a SvelteKit route that Vercel will deploy with ISR, revalidating the page every 60 seconds, with on-demand revalidation enabled:
export const config = {
isr: {
expiration: 60,
bypassToken: 'REPLACE_ME_WITH_SECRET_VALUE',
},
};
Learn more about ISR with SvelteKit.
To summarize, the benefits of using ISR with SvelteKit on Vercel include:
- Better performance with our global Edge Network
- Zero-downtime rollouts to previously statically generated pages
- Framework-aware infrastructure enables global content updates in 300ms
- Generated pages are both cached and persisted to durable storage
New project deployments can lead to version skew. This can happen when your users are using your app and a new version gets deployed. Their deployment version requests assets from an older version. And those assets from the previous version got replaced. This can cause errors when those active users navigate or interact with your project.
SvelteKit has a skew protection solution. When it detects version skew, it triggers a hard reload of a page to sync to the latest version. This does mean the client-side state gets lost. With Vercel skew protection, client requests get routed to their original deployment. No client-side state gets lost. To enable it, visit the Advanced section of your project settings on Vercel.
Learn more about skew protection with SvelteKit.
To summarize, the benefits of using ISR with SvelteKit on Vercel include:
- Mitigates the risk of your active users encountering version skew
- Avoids hard reloads for current active users on your project
Learn more about skew protection on Vercel.
Image Optimization helps you achieve faster page loads by reducing the size of images and using modern image formats.
When deploying to Vercel, you can optimize your images on demand, keeping your build times fast while improving your page load performance and Core Web Vitals.
To use Image Optimization with SvelteKit on Vercel, use the @sveltejs/adapter-vercel
within your svelte.config.ts
file.
import adapter from '@sveltejs/adapter-vercel';
export default {
kit: {
adapter({
images: {
sizes: [640, 828, 1200, 1920, 3840],
formats: ['image/avif', 'image/webp'],
minimumCacheTTL: 300,
domains: ['example-app.vercel.app'],
}
})
}
};
This allows you to specify configuration options for Vercel's native image optimization API.
To use image optimization with SvelteKit, you have to construct your own srcset
URLs. You can create a library function that will optimize srcset
URLs in production for you like this:
import { dev } from '$app/environment';
export function optimize(src: string, widths = [640, 960, 1280], quality = 90) {
if (dev) return src;
return widths
.slice()
.sort((a, b) => a - b)
.map((width, i) => {
const url = `/_vercel/image?url=${encodeURIComponent(src)}&w=${width}&q=${quality}`;
const descriptor = i < widths.length - 1 ? ` ${width}w` : '';
return url + descriptor;
})
.join(', ');
}
Use an img
or any other image component with an optimized srcset
generated by the optimize
function:
<script lang="ts">
import { optimize } from '$lib/image';
import type { Photo } from '$lib/types';
export let photo: Photo;
</script>
<img
class="absolute left-0 top-0 w-full h-full"
srcset={optimize(photo.url)}
alt={photo.description}
/>
To summarize, using Image Optimization with SvelteKit on Vercel:
- Configure image optimization with
@sveltejs/adapter-vercel
- Optimize for production with a function that constructs optimized
srcset
for your images - Helps your team ensure great performance by default
- Keeps your builds fast by optimizing images on-demand
Learn more about Image Optimization
Vercel's Web Analytics features enable you to visualize and monitor your application's performance over time. The Analytics tab in your project's dashboard offers detailed insights into your website's visitors, with metrics like top pages, top referrers, and user demographics.
To use Web Analytics, navigate to the Analytics tab of your project dashboard on Vercel and select Enable in the modal that appears.
To track visitors and page views, we recommend first installing our @vercel/analytics
package by running the terminal command below in the root directory of your SvelteKit project:
pnpm i @vercel/analytics
In your SvelteKit project's main +layout.svelte
file, add the following <script>
:
With the above script added to your project, you'll be able to view detailed user insights in your dashboard on Vercel under the Analytics tab. See our docs to learn more about the user metrics you can track with Vercel's Web Analytics.
Your project must be deployed on Vercel to take advantage of the Web Analytics feature. Work on making this feature more broadly available is in progress.
To summarize, using Web Analytics with SvelteKit on Vercel:
- Enables you to track traffic and see your top-performing pages
- Offers you detailed breakdowns of visitor demographics, including their OS, browser, geolocation, and more
Learn more about Web Analytics
You can see data about your project's Core Web Vitals performance in your dashboard on Vercel. Doing so will allow you to track your web application's loading speed, responsiveness, and visual stability so you can improve the user experience.
See our Speed Insights docs to learn more.
To summarize, using Speed Insights with SvelteKit on Vercel:
- Enables you to track traffic performance metrics, such as First Contentful Paint, or First Input Delay
- Enables you to view performance metrics by page name and URL for more granular analysis
- Shows you a score for your app's performance on each recorded metric, which you can use to track improvements or regressions
Learn more about Speed Insights
Draft Mode enables you to view draft content from your Headless CMS immediately, while still statically generating pages in production.
To use a SvelteKit route in Draft Mode, you must:
- Export a
config
object that enables Incremental Static Regeneration from the route's+page.server
file:
import { BYPASS_TOKEN } from '$env/static/private';
export const config = {
isr: {
// Random token that can be provided to bypass the cached version of the page with a __prerender_bypass=<token> cookie. Allows rendering content at request time for this route.
bypassToken: BYPASS_TOKEN,
// Expiration time (in seconds) before the cached asset will be re-generated by invoking the Serverless Function.
// Setting the value to `false` means it will never expire.
expiration: 60,
},
};
- Send a
__prerender_bypass
cookie with the same value asbypassToken
in your config.
To render the draft content, SvelteKit will check for __prerender_bypass
. If its value matches the value of bypassToken
, it will render content fetched at request time rather than prebuilt content.
We recommend using a cryptographically secure random number generator at build
time as your bypassToken
value. If a malicious actor guesses your
bypassToken
, they can view your pages in Draft Mode.
Deployments on Vercel automatically secure Draft Mode behind the same authentication used for Preview Comments. In order to enable or disable Draft Mode, the viewer must be logged in as a member of the Team. Once enabled, Vercel's Edge Network will bypass the ISR cache automatically and invoke the underlying Serverless Function.
You and your team members can toggle Draft Mode in the Vercel Toolbar in production, localhost, and Preview Deployments. When you do so, the toolbar will become purple to indicate Draft Mode is active.
Users outside your Vercel team cannot toggle Draft Mode.
To summarize, the benefits of using Draft Mode with SvelteKit on Vercel include:
- Easily server-render previews of static pages
- Adds security measures to prevent malicious usage
- Integrates with any headless provider of your choice
- You can enable and disable Draft Mode in the comments toolbar on Preview Deployments
Edge Middleware is useful for modifying responses before they're sent to a user. We recommend using SvelteKit's server hooks to modify responses. Due to SvelteKit's client-side rendering, you cannot use Vercel's Edge Middleware with SvelteKit.
Adding a vercel.json
file to the root directory of your project enables you to rewrite your app's routes.
We do not recommend using vercel.json
rewrites with SvelteKit.
Rewrites from vercel.json
only apply to the Vercel proxy. At runtime, SvelteKit doesn't have access to the rewritten URL, which means it has no way of rendering the intended rewritten route.
See our Frameworks documentation page to learn about the benefits available to all frameworks when you deploy on Vercel.
Learn more about deploying SvelteKit projects on Vercel with the following resources:
Beginner SvelteKit course
Explore our SvelteKit course for a deep-dive on deploying a SvelteKit app.
Learn about the Build Output API
See our docs on the Build Output API to see how SvelteKit uses Vercel's features.
SvelteKit's official docs
See SvelteKit's Vercel adapter docs page for the latest changes.
Was this helpful?