Skip to content

Commit 908e10f

Browse files
committed
➕ gitignore 설정 : next, typeScript 추가
1 parent e288692 commit 908e10f

File tree

1 file changed

+47
-6
lines changed

1 file changed

+47
-6
lines changed

.gitignore

Lines changed: 47 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,13 @@ Thumbs.db
5959
src/main/resources/application-secrets.yml
6060
HELP.md
6161
.gradle
62-
build/
6362
!gradle/wrapper/gradle-wrapper.jar
6463
!**/src/main/**/build/
6564
!**/src/test/**/build/
6665

6766
### STS ###
6867
.apt_generated
69-
.classpath
7068
.factorypath
71-
.project
7269
.settings
7370
.springBeans
7471
.sts4-cache
@@ -79,7 +76,6 @@ bin/
7976
### IntelliJ IDEA ###
8077
.idea
8178
*.iws
82-
*.iml
8379
*.ipr
8480
out/
8581
!**/src/main/**/out/
@@ -92,8 +88,53 @@ out/
9288
/nbdist/
9389
/.nb-gradle/
9490

95-
### VS Code ###
96-
.vscode/
9791

9892
### Kotlin ###
9993
.kotlin
94+
95+
# Next.js
96+
.next/
97+
98+
# TypeScript
99+
*.tsbuildinfo
100+
next-env.d.ts
101+
102+
# Dependencies
103+
node_modules/
104+
105+
# Production build
106+
/build
107+
/dist
108+
109+
# Environment variables
110+
.env.local
111+
.env.development.local
112+
.env.test.local
113+
.env.production.local
114+
115+
# Logs
116+
npm-debug.log*
117+
yarn-debug.log*
118+
yarn-error.log*
119+
120+
# Optional: Vite assets (if not needed)
121+
vite.svg
122+
123+
# Logs
124+
logs
125+
pnpm-debug.log*
126+
lerna-debug.log*
127+
128+
node_modules
129+
dist
130+
dist-ssr
131+
*.local
132+
133+
# Editor directories and files
134+
.vscode/*
135+
!.vscode/extensions.json
136+
*.suo
137+
*.ntvs*
138+
*.njsproj
139+
*.sln
140+
*.sw?

0 commit comments

Comments
 (0)