diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
| commit | a0485ad26353a08562c13c14ea9de73fd705f9de (patch) | |
| tree | 1bc499c572e3642b769f7391f493d972a8a749d9 /.gitignore | |
| parent | 0349923dd0a970f009ce7ca54881f8c398c67100 (diff) | |
| download | personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.gz personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.bz2 personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.zip | |
Initial Rewrite
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 40 |
1 files changed, 12 insertions, 28 deletions
@@ -1,37 +1,21 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +# build output +dist/ -# Jetbrains -/.idea/ +# generated types +.astro/ # dependencies -/node_modules -/.pnp -.pnp.js +node_modules/ -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug +# logs npm-debug.log* yarn-debug.log* yarn-error.log* +pnpm-debug.log* -# local env files -.env.local -.env.development.local -.env.test.local -.env.production.local +# environment variables +.env +.env.production -# vercel -.vercel +# macOS-specific files +.DS_Store |
