b937c96423
* env: updated env structure to make the vercel deployment work * env: updated the URL_API to be compatible with vercel * feat: add vercel.json * env: vercel protection bypass * env: adding bypass logic * fix: changed 127.0.0.1 back to localhost * env: readded cors * env: delete vercel.json * env: update headers * env: moved cors back to vercel.json * env: allow all headers * env: switched from headers to query variables * env: still need CORS * env: ignore cookie * env: tidy * tidy: cleanup
41 lines
433 B
Plaintext
41 lines
433 B
Plaintext
# 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/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Sentry
|
|
.sentryclirc
|
|
|
|
# Environment variables
|
|
.env.local
|
|
.env.production
|
|
.env |