next.config.ts regenerates public/sw.js on every build with a new timestamp; tracking it produces noise on every build. Add to .gitignore and untrack — it is always regenerated by `pnpm dev` / `pnpm build` and by the Docker build stage. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
52 lines
673 B
Plaintext
52 lines
673 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
.next/
|
|
out/
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Generated at build time by next.config.ts — do not commit
|
|
public/sw.js
|
|
|
|
# Auto-generated by Next.js — never edit, never commit
|
|
next-env.d.ts
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Editors
|
|
.claude/
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json.example
|
|
.idea/
|
|
|
|
# Coverage / test artifacts
|
|
coverage/
|
|
playwright-report/
|
|
test-results/
|
|
tests/.auth/
|
|
|
|
# Drizzle generated artifacts (migrations themselves are committed)
|
|
drizzle/meta/
|
|
|
|
# Backups
|
|
deploy/backups/data/
|