Nuxt/docs/content/2.guide/5.deployment/99.presets/lambda.md
Chris Lloyd 643641d489
docs: fix nitro preset names in examples (#4432) (#4433)
Co-authored-by: Chris Lloyd <chris.yagro.com>
2022-04-19 18:50:04 +02:00

1.3 KiB

Lambda function

Discover the Lambda function preset with Nitro to deploy Nuxt to any lambda-compatible serverless platform.

::alert{icon=IconPresets} Back to presets list. ::

Usage

You can use the Nuxt config to explicitly set the preset to use:

export default {
  nitro: {
    preset: 'aws-lambda'
  }
}

Or directly use the NITRO_PRESET environment variable when running nuxt build:

NITRO_PRESET=aws-lambda npx nuxt build

::alert AWS Lambda defaults to payload version v2. This Nitro preset supports both v1 and v2 payloads. ::

Entry point

When running nuxt build with the Lambda preset, the result will be an entry point that exports a handler function that responds to an event and returns a response.

This entry point is compatible with AWS Lambda and Netlify Functions.

It can be used programmatically or as part of a deployment.

import { handler } from './.output/server'

// Use programmatically
const { statusCode, headers, body } = handler({ rawPath: '/' })