- Updated .gitignore to properly ignore node_modules directories - Removed node_modules from git tracking (was causing 374+ file changes) - Enhanced professional page layout with section navigation
38 lines
397 B
Plaintext
38 lines
397 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
*/node_modules/
|
|
**/node_modules/
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
|
|
# Production
|
|
build/
|
|
dist/
|
|
|
|
# Environment variables
|
|
.env*
|
|
!.env.example
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Package locks (keep package-lock.json but can ignore yarn.lock)
|
|
yarn.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|