# The build context was 582 MB, 536 MB of it node_modules — and because the
# Dockerfile does `COPY . .` *after* copying the deps stage, the host's
# macOS/arm64 node_modules overwrote the Linux ones installed by `npm ci`.
# Native modules built for the wrong platform is the kind of failure that only
# shows up at runtime, in a container, on a server.
node_modules
.next
out

# Build-time secrets must never enter an image layer.
.env
.env.*
!.env.example

.git
.gitignore
.github

# macOS / editor noise
.DS_Store
*.swp
.idea
.vscode

# Nothing here affects the build
README.md
*.md
docs
coverage
.eslintcache
tsconfig.tsbuildinfo
npm-debug.log*
