| 1 | # Dependencies |
| 2 | /node_modules |
| 3 | /.pnp |
| 4 | .pnp.* |
| 5 | .yarn/* |
| 6 | !.yarn/patches |
| 7 | !.yarn/plugins |
| 8 | !.yarn/releases |
| 9 | !.yarn/versions |
| 10 | |
| 11 | # Testing |
| 12 | /coverage |
| 13 | |
| 14 | # Build outputs |
| 15 | /.next/ |
| 16 | /out/ |
| 17 | /build/ |
| 18 | /dist/ |
| 19 | .vinxi |
| 20 | .output |
| 21 | .react-router/ |
| 22 | .tanstack/ |
| 23 | .nitro/ |
| 24 | |
| 25 | # Deployment |
| 26 | .vercel |
| 27 | .netlify |
| 28 | .wrangler |
| 29 | .alchemy |
| 30 | |
| 31 | # Environment & local files |
| 32 | .env* |
| 33 | !.env.example |
| 34 | .DS_Store |
| 35 | *.pem |
| 36 | *.local |
| 37 | |
| 38 | # Logs |
| 39 | npm-debug.log* |
| 40 | yarn-debug.log* |
| 41 | yarn-error.log* |
| 42 | .pnpm-debug.log* |
| 43 | *.log* |
| 44 | |
| 45 | # TypeScript |
| 46 | *.tsbuildinfo |
| 47 | next-env.d.ts |
| 48 | |
| 49 | # IDE |
| 50 | .vscode/* |
| 51 | !.vscode/extensions.json |
| 52 | .idea |
| 53 | |
| 54 | # Other |
| 55 | dev-dist |
| 56 | |
| 57 | .wrangler |
| 58 | .dev.vars* |
| 59 | |
| 60 | .open-next |
| 61 | |
| 62 | # Sentry Config File |
| 63 | .sentryclirc |
| 64 | |
| 65 | # Localflare generated files |
| 66 | .localflare/ |
| 67 |