Make your Nuxt experience count in The State of JavaScript 2024
Deploy

SST

Deploy your Nuxt Application to AWS with SST.

Nuxt supports deploying on SST with minimal configuration.

Quick start

  1. Create a Nuxt project.
  2. Init SST in your project.
    npx sst@latest init
    
  3. It should detect that your are using Nuxt and ask you to update your nuxt.config.ts file.
    nitro: {
      preset: 'aws-lambda'
    }
    
  4. Once you are ready to deploy, run.
    npx sst deploy --stage production
    

You can read the full Nuxt on SST tutorial here.

More options

You can also deploy Nuxt to a container using SST. Head over to the SST docs to learn more.