diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-09 16:59:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-09 16:59:23 +0200 |
commit | 5a0f2ed7af3bb804219c1be07969103572384ceb (patch) | |
tree | bb87a04560201d8af6e6e4ca5d84f8a06b8c3ace /.gitignore | |
parent | 87f7bd7b20277786c39726db397caf1971abb956 (diff) |
add next.js project files
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ced84a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# 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/ +next-env.d.ts + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env.local +.env.development.local +.env.test.local +.env.production.local + +# vercel +.vercel + |