The .gitignore previously contained the literal echo command instead of its output, so appro-admin.zip slipped past it. Rewrite it properly and untrack the build zip and tsconfig.tsbuildinfo (kept on disk, ignored going forward). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
36 lines
400 B
Plaintext
36 lines
400 B
Plaintext
# Next.js build output
|
|
.next/
|
|
.next/**
|
|
.next/dev/lock
|
|
out
|
|
appro-admin
|
|
appro-admin.zip
|
|
*.zip
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
.idea/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# TypeScript
|
|
tsconfig.tsbuildinfo
|