We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf3c81 commit 0f5a486Copy full SHA for 0f5a486
.gitignore
@@ -1,5 +1,5 @@
1
# Dependencies
2
-node_modules
+/node_modules
3
/.pnp
4
.pnp.js
5
.yarn/install-state.gz
@@ -9,7 +9,8 @@ node_modules
9
10
# Next.js
11
/.next/
12
-/out/
+/out
13
+.next
14
15
# Production
16
/build
@@ -34,6 +35,12 @@ yarn-error.log*
34
35
*.tsbuildinfo
36
next-env.d.ts
37
38
+# IDE
39
+.idea
40
+.vscode/*
41
+!.vscode/settings.json
42
+!.vscode/extensions.json
43
+
44
# Go specific
45
# If you prefer the allow list template instead of the deny list, see community template:
46
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
@@ -57,3 +64,6 @@ next-env.d.ts
57
64
# Go workspace file
58
65
go.work
59
66
go.work.sum
67
68
+# Keep the out directory for GitHub Pages
69
+!/out
0 commit comments