- Restore Unreleased entries in root CHANGELOG files (were incorrectly removed) - Add public/CHANGELOG*.md to .gitignore (auto-generated by syncChangelogs) - Remove public/CHANGELOG*.md from git tracking - Fix indentation in vite.config.ts return block Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
53 lines
503 B
Text
53 lines
503 B
Text
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
dist-ssr/
|
|
target/
|
|
|
|
# User data
|
|
data/
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
|
|
# Imports
|
|
imports/*.csv
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
*.local
|
|
|
|
# Secrets
|
|
*.pem
|
|
*.key
|
|
|
|
# IDE
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Auto-generated changelogs (synced from root by vite.config.ts)
|
|
public/CHANGELOG.md
|
|
public/CHANGELOG.fr.md
|
|
|
|
# Tauri generated
|
|
src-tauri/gen/
|