Package Exports
- serverless-frontend
- serverless-frontend/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (serverless-frontend) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Serverless Frontend
Use Serverless 3.x (or osls) to deploy your frontend app to AWS.
Installation
Add this package to your project, along with Serverless
yarn add --dev serverless-frontend
# OR
npm install --save-dev serverless-frontendCreate a serverless.yml file with at least the bare minimum:
frameworkVersion: "^3"
service: my-tanstack-start-app
provider:
name: aws
region: eu-central-1
runtime: nodejs22.x
plugins:
- serverless-frontendDeploy using
yarn serverless deploy --stage dev
# OR
npm exec -- serverless deploy --stage devIf you're using TanStack Start, Nuxt or a Vite project, the configuration will be automatically detected. The plugin detects your package manager based on the lock file present.
Customisation
Custom build command
Specify your command as an array, or a string. If you specify a string, it'll split on spaces.
custom:
frontend:
buildCommand: [yarn, build]Set environment variables for build
When building for Nitro, Nuxt or TanStack Start, the plugin adds two variables to the build environment:
NITRO_PRESET=aws-lambdaSERVER_PRESET=aws-lambda
If you need to override these or provide more variables, you can specify your own in the config:
custom:
frontend:
buildEnvironment:
VITE_TITLE: "My App"These variables are usually available at build time using import.meta.env.VARIABLE_NAME,
but only if the variable name has a specific prefix: VITE_ for Vite, NUXT_ for Nuxt, etc.
SSR environment variables
To set environment variables for the SSR Lambda function,
you can use the ssrEnvironment option:
custom:
frontend:
ssrEnvironment:
API_URL: https://my-api.example.com/api/v1/These variables are usually available at runtime on the server side using process.env.VARIABLE_NAME.
Specify framework
You can manually specify the framework to use:
custom:
frontend:
framework: nitro # nuxt | tanstack-start | nitro | viteHost header
Because the SSR lambda function is behind CloudFront, it'll have a different host header.
In particular, it'll be the one used for the Lambda Function URL.
Therefore, the default configuration forwards the host header from CloudFront to the Lambda in the X-Forwarded-Host header.
If you're not using this header in your app, you can disable this behaviour:
custom:
frontend:
ssrForwardHost: falseIf you do want to use the X-Forwarded-Host header, make sure to read it in your app.
Nitro-based apps can read it automatically in the getRequestUrl function by specifying the appropriate options:
Nuxt
getRequestURL(event, { xForwardedHost: true })TanStack Start
import { getRequestUrl } from "@tanstack/react-start/server"
getRequestUrl({ xForwardedHost: true })Custom domain name
To assign a custom domain to your CloudFront distribution,
you need to request a certificate in the us-east-1 region.
Once that is issued, you can assign the ARN and domains to
the deployed CloudFront distribution by adding the following to
serverless.yml:
custom:
frontend:
aliases: ... # Specify the domains you want to assign to CloudFront as a comma-separated string or array
# Examples:
# aliases: primary.tld
# aliases: primary.tld,www.primary.tld
# aliases: [primary.tld, www.primary.tld]
# aliases: !Ref MyDomainParameter
certificate: ... # Specify the ARN of the certificate to assign to CloudFrontTip: you can use Serverless Compose to deploy the certificate to us-east-1, and deploy the app to another region.
Features
- SSR mode (Nitro/Nuxt/TanStack Start)
- SPA mode (Vite without SSR)
Architecture
This package will deploy several resources to your AWS account, which for small projects should all fall in the free tier.
- S3 bucket for assets
- Lambda for the server part
- CloudFront distribution
SSR Mode
In SSR mode, this plugin configures the /assets (or /_nuxt for Nuxt) path to serve static assets from S3, and all other requests are routed to the Lambda function. Using origin groups, any 404 for the assets will also be routed to the Lambda.
SPA Mode
In SPA mode, all requests are routed to S3, but using origin groups and
a specially crafted origin, any 404/403 from S3 will result in serving the index.html.
By specifying a origin path of index.html?fallback=, the original path becomes a query parameter
and index.html is served instead.
Roadmap
- Customisation of functions/resources
- Streaming support
- Update frontend bucket using a custom resource
- Cleanup of old frontend resources
Why not use SST?
SST is a great framework, but I didn't want to add Terraform to my tech stack. Using Serverless (almost) everything is handled by CloudFormation. It's a matter of preference, so I made something that works with Serverless.
Acknowledgments
This project is built on these awesome projects: