Para que el navegador arroje la informaci贸n del JSON m谩s legible, les recomiendo agregar este header en el objeto headers del archivo base.js
const headers = {
/* Required for CORS support to work */
"Access-Control-Allow-Origin": "*",
/* Required for cookies, authorization headers with HTTPS */
"Access-Control-Allow-Credentials": true,
/* Para visualizar mejor el texto en JSON */
"content-type": "application/json",
};
Want to see more contributions, questions and answers from the community?