diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-23 01:39:11 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-23 01:39:11 -0400 |
| commit | d7c46a9eae28046bb26da182abc298dc18ed5a10 (patch) | |
| tree | a1f9955a757b150b88ed5398ef851ab2d1d4a46b /web/.gitignore | |
| parent | b60e681998a456adecb93b5fe04b66ad4ac9abb6 (diff) | |
| download | AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.gz AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.bz2 AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.zip | |
Replacing Astro with Next.JS; Prefix warning; Consistent env vars
Diffstat (limited to 'web/.gitignore')
| -rw-r--r-- | web/.gitignore | 47 |
1 files changed, 32 insertions, 15 deletions
diff --git a/web/.gitignore b/web/.gitignore index 016b59e..5ef6a52 100644 --- a/web/.gitignore +++ b/web/.gitignore @@ -1,24 +1,41 @@ -# build output -dist/ - -# generated types -.astro/ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -node_modules/ +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build -# logs +# misc +.DS_Store +*.pem + +# debug npm-debug.log* yarn-debug.log* yarn-error.log* -pnpm-debug.log* +.pnpm-debug.log* -# environment variables -.env -.env.production +# env files (can opt-in for committing if needed) +.env* -# macOS-specific files -.DS_Store +# vercel +.vercel -# jetbrains setting folder -.idea/ +# typescript +*.tsbuildinfo +next-env.d.ts |
