We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 61b7be8Copy full SHA for 61b7be8
.gitignore
@@ -0,0 +1,38 @@
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
+# Local env files
9
+.env
10
+.env.local
11
+.env.development.local
12
+.env.test.local
13
+.env.production.local
14
15
+# Testing
16
+coverage
17
18
+# Turbo
19
+.turbo
20
21
+# Vercel
22
+.vercel
23
24
+# Build Outputs
25
+.next/
26
+out/
27
+build
28
+dist
29
30
31
+# Debug
32
+npm-debug.log*
33
+yarn-debug.log*
34
+yarn-error.log*
35
36
+# Misc
37
+.DS_Store
38
+*.pem
0 commit comments