| 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
| 2 | |
| 3 | # dependencies |
| 4 | /node_modules |
| 5 | /.pnp |
| 6 | .pnp.js |
| 7 | |
| 8 | # testing |
| 9 | /coverage |
| 10 | /test-results |
| 11 | |
| 12 | # next.js |
| 13 | /.next/ |
| 14 | /out/ |
| 15 | /next-env.d.ts |
| 16 | |
| 17 | # production |
| 18 | /build |
| 19 | |
| 20 | # misc |
| 21 | .DS_Store |
| 22 | *.pem |
| 23 | |
| 24 | # debug |
| 25 | npm-debug.log* |
| 26 | yarn-debug.log* |
| 27 | yarn-error.log* |
| 28 | .pnpm-debug.log* |
| 29 | |
| 30 | # local env files |
| 31 | .env*.local |
| 32 | |
| 33 | # vercel |
| 34 | .vercel |
| 35 | |
| 36 | # typescript |
| 37 | *.tsbuildinfo |
| 38 | |
| 39 | # external fonts |
| 40 | public/fonts/Optimistic_Display_W_Lt.woff2 |
| 41 | public/fonts/Optimistic_Display_W_Md.woff2 |
| 42 | public/fonts/Optimistic_Display_W_Bd.woff2 |
| 43 | |
| 44 | # vscode |
| 45 | .vscode/* |
| 46 | !.vscode/extensions.json |