Samuel Shuert | 85d65ed | 2024-02-04 13:38:07 -0500 | [diff] [blame] | 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
2 | |||||
Samuel Shuert | f4deb4e | 2024-02-04 13:56:30 -0500 | [diff] [blame^] | 3 | .env |
4 | .direnv/ | ||||
5 | |||||
Samuel Shuert | 85d65ed | 2024-02-04 13:38:07 -0500 | [diff] [blame] | 6 | # dependencies |
7 | /node_modules | ||||
8 | /.pnp | ||||
9 | .pnp.js | ||||
10 | .yarn/install-state.gz | ||||
11 | |||||
12 | # testing | ||||
13 | /coverage | ||||
14 | |||||
15 | # next.js | ||||
16 | /.next/ | ||||
17 | /out/ | ||||
18 | |||||
19 | # production | ||||
20 | /build | ||||
21 | |||||
22 | # misc | ||||
23 | .DS_Store | ||||
24 | *.pem | ||||
25 | |||||
26 | # debug | ||||
27 | npm-debug.log* | ||||
28 | yarn-debug.log* | ||||
29 | yarn-error.log* | ||||
30 | |||||
31 | # local env files | ||||
32 | .env*.local | ||||
33 | |||||
34 | # vercel | ||||
35 | .vercel | ||||
36 | |||||
37 | # typescript | ||||
38 | *.tsbuildinfo | ||||
39 | next-env.d.ts |