Skip to content

Commit 0f5a486

Browse files
committed
Update .gitignore to allow out directory
1 parent 6bf3c81 commit 0f5a486

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.gitignore

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dependencies
2-
node_modules
2+
/node_modules
33
/.pnp
44
.pnp.js
55
.yarn/install-state.gz
@@ -9,7 +9,8 @@ node_modules
99

1010
# Next.js
1111
/.next/
12-
/out/
12+
/out
13+
.next
1314

1415
# Production
1516
/build
@@ -34,6 +35,12 @@ yarn-error.log*
3435
*.tsbuildinfo
3536
next-env.d.ts
3637

38+
# IDE
39+
.idea
40+
.vscode/*
41+
!.vscode/settings.json
42+
!.vscode/extensions.json
43+
3744
# Go specific
3845
# If you prefer the allow list template instead of the deny list, see community template:
3946
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
@@ -57,3 +64,6 @@ next-env.d.ts
5764
# Go workspace file
5865
go.work
5966
go.work.sum
67+
68+
# Keep the out directory for GitHub Pages
69+
!/out

0 commit comments

Comments
 (0)