Next.js 15 + React 19, Tailwind v4, shadcn/ui (button, card, input, dialog), postcss config, standalone output. ESLint extended with next/core-web-vitals via eslint-config-next flat export. node-linker=hoisted in .npmrc to allow standalone builds on Windows (symlink restriction). next-env.d.ts added to .gitignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
575 B
Plaintext
47 lines
575 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
.next/
|
|
out/
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# 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
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json.example
|
|
.idea/
|
|
|
|
# Coverage / test artifacts
|
|
coverage/
|
|
playwright-report/
|
|
test-results/
|
|
|
|
# Drizzle generated artifacts (migrations themselves are committed)
|
|
drizzle/meta/
|
|
|
|
# Backups
|
|
deploy/backups/data/
|