diff options
| author | zwlucas <lucas.oliveira1676@etec.sp.gov.br> | 2025-03-31 23:24:13 +0000 |
|---|---|---|
| committer | zwlucas <lucas.oliveira1676@etec.sp.gov.br> | 2025-03-31 23:24:13 +0000 |
| commit | 0d54368efc5e91bf1beea8961655fa77f51b3074 (patch) | |
| tree | 565050614ac4666c41b8eec20ce1ca85f4d8bb09 /.gitignore | |
| download | eleicoes-0d54368efc5e91bf1beea8961655fa77f51b3074.tar.gz eleicoes-0d54368efc5e91bf1beea8961655fa77f51b3074.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 |