SvelteKit on AWS Amplify
AWS Amplify documents a generic path that covers SvelteKit, rather than a dedicated guide.
Svelte application framework that targets different deployment platforms through adapters.
What SvelteKit needs.
Every host claims to run SvelteKit, so the claim on its own decides nothing. These are the things SvelteKit actually requires from the platform underneath it, and what AWS Amplify publishes about each. AWS Amplify documents 3 of the 4.
Max request duration
15 minutes (maximum execution time of an SSR compute execution instance)
SvelteKit load functions and form actions run on the server per request, bounded by this ceiling.
Sources (1) →Sources ↓
- Using the Amplify Hosting deployment specification to configure build output - AWS Amplify Hosting ↗
“Execution instances are limited to a maximum execution time of 15 minutes, and the only writable path within the execution instance is the /tmp directory.”
Read 2026-09-05 · official docs
Edge network
Supported
The adapter decides where handlers run. An edge network is what makes the edge adapters worth choosing.
Sources (1) →Sources ↓
- Welcome to AWS Amplify Hosting - AWS Amplify Hosting ↗
“Amplify deploys your app to the AWS global content delivery network (CDN).”
Read 2026-09-05 · official docs
Build minutes
1,000 build minutes per month at no cost with AWS Free Tier; $0.01 per minute for a Standard Instance thereafter
Prerenderable routes are resolved at build time, so build allowance scales with the size of the site.
Sources (1) →Sources ↓
- AWS Amplify Pricing | Front-End Web & Mobile | Amazon Web Services ↗
“Standard Instance (8 GB Memory; 4 vCPUs) | No cost up to 1,000 build minutes per month | $0.01 per minute”
Read 2026-09-05 · official pricing
Scales to zero
Not documented
Adapter output is usually a function per route. Scaling to zero removes idle cost at the price of a cold start.
What AWS Amplify documents.
AWS Amplify documents a generic path that covers SvelteKit, rather than a dedicated guide.
You can deploy a SvelteKit application to Amplify using a community adapter. We do not maintain an Amplify owned adapter for the SvelteKit framework. Limited: support is documented only via a third-party community adapter that AWS links to but does not maintain.
Sources (1) →Sources ↓
- Amplify support for SvelteKit - AWS Amplify Hosting ↗
“You can deploy a SvelteKit application to Amplify using a community adapter. We do not maintain an Amplify owned adapter for the SvelteKit framework. Limited: support is documented only via a third-party community adapter that AWS links to but does not maintain.”
Read 2026-09-05 · official docs
What it costs to run there.
- Pricing model
- Usage-based; pay for what you use, with no monthly minimum
- When you exceed a cap
- Billed automatically: pay-as-you-go with no monthly minimums; storage charges keep recurring until the app is deleted
Sources (1) →Sources ↓
- AWS Amplify Pricing | Front-End Web & Mobile | Amazon Web Services ↗
“Pay for what you use. Includes multiple sites per project and public SSL certificates at no additional cost.”
Read 2026-09-05 · official pricing
Whether it suits you.
Front-end apps deployed from Git onto AWS with usage-based pricing and no monthly minimum, including 1,000 build minutes and 15 GB of transfer under the free tier.
Consider something else if…
Egress beyond the free allowance is $0.15 per GB, which is the highest of the platforms compared here, and SSR compute is capped at 15 minutes.
Visit AWS Amplify documentation