Next.js on AWS with SST
Create and deploy a Next.js app to AWS with SST.
There are two ways to deploy a Next.js app to AWS with SST.
We’ll use both to build a couple of simple apps below.
Examples
We also have a few other Next.js examples that you can refer to.
- Adding basic auth to your Next.js app
- Enabling streaming in your Next.js app
- Add additional routes to the Next.js CDN
Serverless
We are going to create a Next.js app, add an S3 Bucket for file uploads, and deploy it using OpenNext and the Nextjs
component.
Before you get started, make sure to configure your AWS credentials.
1. Create a project
Let’s start by creating our app.
We are picking all the default options.
Init SST
Now let’s initialize SST in our app.
Select the defaults and pick AWS. This’ll create a sst.config.ts
file in your project root.
Start dev mode
Run the following to start dev mode. This’ll start SST and your Next.js app.
Once complete, click on MyWeb in the sidebar and open your Next.js app in your browser.
2. Add an S3 Bucket
Let’s allow public access
to our S3 Bucket for file uploads. Update your sst.config.ts
.
Add this above the Nextjs
component.
Link the bucket
Now, link the bucket to our Next.js app.
3. Create an upload form
Add a form client component in components/form.tsx
.
Add some styles.
4. Generate a pre-signed URL
When our app loads, we’ll generate a pre-signed URL for the file upload and render the form with it. Replace your Home
component in app/page.tsx
.
We need the force-dynamic
because we don’t want Next.js to cache the pre-signed URL.
Add the relevant imports.
And install the npm packages.
Test your app
Head over to the local Next.js app in your browser, http://localhost:3000
and try uploading an image. You should see it upload and then download the image.
5. Deploy your app
Now let’s deploy your app to AWS.
You can use any stage name here but it’s good to create a new stage for production.
Congrats! Your app should now be live!
Containers
We are going to build a hit counter Next.js app with Redis. We’ll the deploy it to AWS in a container using the Cluster
component.
Before you get started, make sure to configure your AWS credentials.
1. Create a project
Let’s start by creating our app.
We are picking all the default options.
Init SST
Now let’s initialize SST in our app.
Select the defaults and pick AWS. This’ll create a sst.config.ts
file in your project root.
2. Add a Cluster
To deploy our Next.js app in a container, we’ll use AWS Fargate with Amazon ECS. Replace the run
function in your sst.config.ts
.
This creates a VPC with a bastion host, an ECS Cluster, and adds a Fargate service to it.
The dev.command
tells SST to instead run our Next.js app locally in dev mode.
3. Add Redis
Let’s add an Amazon ElastiCache Redis cluster. Add this below the Vpc
component in your sst.config.ts
.
This shares the same VPC as our ECS cluster.
Link Redis
Now, link the Redis cluster to the container.
This will allow us to reference the Redis cluster in our Next.js app.
Install a tunnel
Since our Redis cluster is in a VPC, we’ll need a tunnel to connect to it from our local machine.
This needs sudo to create a network interface on your machine. You’ll only need to do this once on your machine.
Start dev mode
Start your app in dev mode.
This will deploy your app, start a tunnel in the Tunnel tab, and run your Next.js app locally in the MyServiceDev tab.
4. Connect to Redis
We want the /
route to increment a counter in our Redis cluster. Let’s start by installing the npm package we’ll use.
Add the relevant imports to your index.mjs
.
Let’s update the component. Replace the Home
component in app/page.tsx
.
We need the force-dynamic
because we don’t want Next.js to cache the counter.
Let’s add some styles to app/page.module.css
.
Test your app
Let’s head over to http://localhost:3000
in your browser and it’ll show the current hit counter.
You should see it increment every time you refresh the page.
5. Deploy your app
To build our app for production, we’ll enable Next.js’s standalone output. Let’s update our next.config.mjs
.
Now to deploy our app we’ll add a Dockerfile
.
View Dockerfile
This builds our Next.js app in a Docker image. To make sure that the build process in Docker has access to our Redis cluster, we have the following.
Here MyRedis
is the name of the component in our sst.config.ts
file.
Let’s also add a .dockerignore
file in the root.
Now to build our Docker image and deploy we run:
You can use any stage name here but it’s good to create a new stage for production.
Congrats! Your app should now be live!
Connect the console
As a next step, you can setup the SST Console to git push to deploy your app and monitor it for any issues.
You can create a free account and connect it to your AWS account.