Skip to content

Instantly share code, notes, and snippets.

@fernyettheplant
Created April 14, 2018 21:32
Show Gist options
  • Save fernyettheplant/545a8f94059c3b3b9d67434b06c7a4bc to your computer and use it in GitHub Desktop.
Save fernyettheplant/545a8f94059c3b3b9d67434b06c7a4bc to your computer and use it in GitHub Desktop.
Serverless Yaml for NuxtJS serverless side rendering
service: nuxt-serverless # NOTE: update this with your service name
provider:
name: aws
runtime: nodejs8.10
stage: dev
region: us-east-1
functions:
nuxt:
handler: handler.nuxt
events:
- http: ANY {proxy+}
plugins:
- serverless-apigw-binary
custom:
apigwBinary:
types:
- '*/*'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment