Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions amplify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 1
frontend:
phases:
preBuild:
commands:
# set up pnpm
- npm install -g pnpm@10.6.4
# install project dependencies
- pnpm install --frozen-lockfile
build:
commands:
# build Next.js application
- pnpm run build
artifacts:
# Next.js 15 output directory
baseDirectory: .next
files:
- '**/*'
cache:
paths:
# cache dependencies and build artifacts to speed up subsequent builds
- node_modules/**/*
- .next/cache/**/*hi