Skip to content

Instantly share code, notes, and snippets.

@maxgfr
maxgfr / buildspec.yml
Last active June 13, 2023 21:15
Configuration for NextJS for AWS pipeline (Github webhook - Codebuild - Elastic Beanstalk)
version: 0.2
phases:
install:
commands:
- echo Installing dependency...
- npm install -g next
- yarn
pre_build:
commands: