eny.space Landingpage
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(gitignore): expand ignore rules for Next.js and local environment files

Sam Sauer 6ef6f821 c3e65cd5

+25 -7
+25 -7
.gitignore
··· 1 + # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 + 1 3 # dependencies 2 4 /node_modules 3 5 /.pnp 4 - .pnp.js 6 + .pnp.* 7 + .yarn/* 8 + !.yarn/patches 9 + !.yarn/plugins 10 + !.yarn/releases 11 + !.yarn/versions 5 12 6 13 # testing 7 14 /coverage 8 15 16 + # next.js 17 + /.next/ 18 + /out/ 19 + 9 20 # production 10 - /.next 11 - /out 21 + /build 12 22 13 23 # misc 14 24 .DS_Store 15 - .env.local 16 - .env.development.local 17 - .env.test.local 18 - .env.production.local 25 + *.pem 19 26 27 + # debug 20 28 npm-debug.log* 21 29 yarn-debug.log* 22 30 yarn-error.log* 31 + 32 + # local env files 33 + .env*.local 34 + 35 + # vercel 36 + .vercel 37 + 38 + # typescript 39 + *.tsbuildinfo 40 + next-env.d.ts