fix(Diversos): Ajustes no config e gitignore

This commit is contained in:
Keven Willian Pereira de Souza 2025-09-15 09:16:02 -03:00
parent af63a59c2f
commit 43116214ff
2 changed files with 2 additions and 3 deletions

2
.gitignore vendored
View file

@ -39,3 +39,5 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
src/config/app.json

View file

@ -44,9 +44,6 @@ export default class API {
// Verifica se existe body para envio
const filteredBody = _data.body ? Object.fromEntries(Object.entries(_data.body).filter(([_, v]) => v != null && v !== "")) : null;
console.log("URL:: " + `http://api-saas-api-homologacao:8000/administrativo/g_usuario/authenticate`)
// Realiza a requisição
const response = await fetch(`${this.ApiSchema.url}${this.ApiSchema.prefix}${this.ApiSchema.endpoint}`, {
method: _data.method,