diff options
author | Michal Sapka <michal@sapka.me> | 2022-08-04 20:09:19 +0200 |
---|---|---|
committer | Michal Sapka <michal@sapka.me> | 2022-08-04 20:09:19 +0200 |
commit | f6ffdfbe8fc0940ec0f85a51f5d5b96e1f05451c (patch) | |
tree | 64c6dd0dc70be8a211a6ed0fcde9baac8ad47c7c /.gitignore |
feature: blank next.js
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..737d872 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo |