.gitignore

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.yarn/install-state.gz
8package-lock.json
9
10# testing
11/coverage
12
13# next.js
14/.next/
15/out/
16
17# production
18/build
19
20# misc
21.DS_Store
22*.pem
23
24# debug
25npm-debug.log*
26yarn-debug.log*
27yarn-error.log*
28
29# local env files
30.env*.local
31
32# vercel
33.vercel
34
35# typescript
36*.tsbuildinfo
37next-env.d.ts
38