Skip to content

Commit 0463e90

Browse files
committed
add nextjs in gitignore
1 parent 752f6a0 commit 0463e90

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

.gitignore

+44-1
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,47 @@ typescript/docs
203203

204204
# Angular
205205
examples/angular/.angular/cache
206-
examples/angular/dist
206+
examples/angular/dist
207+
208+
# Next.js
209+
210+
# Created by https://www.toptal.com/developers/gitignore/api/nextjs
211+
# Edit at https://www.toptal.com/developers/gitignore?templates=nextjs
212+
213+
### NextJS ###
214+
# dependencies
215+
/node_modules
216+
/.pnp
217+
.pnp.js
218+
219+
# testing
220+
/coverage
221+
222+
# next.js
223+
/.next/
224+
/out/
225+
226+
# production
227+
/build
228+
229+
# misc
230+
.DS_Store
231+
*.pem
232+
233+
# debug
234+
npm-debug.log*
235+
yarn-debug.log*
236+
yarn-error.log*
237+
.pnpm-debug.log*
238+
239+
# local env files
240+
.env*.local
241+
242+
# vercel
243+
.vercel
244+
245+
# typescript
246+
*.tsbuildinfo
247+
next-env.d.ts
248+
249+
# End of https://www.toptal.com/developers/gitignore/api/nextjs

0 commit comments

Comments
 (0)