diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-05-29 21:33:44 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-05-29 21:33:44 -0400 |
| commit | 4afdb7370dcc8df71c648eb76a7e126cb888e65c (patch) | |
| tree | 70d90bf64f5efb19997f115ee6d9317005c34473 /.gitignore | |
| download | alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.tar.gz alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.tar.bz2 alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.zip | |
Initial commit from Create Next App
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ef6a52 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# 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* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts |
