Skip to content

Instantly share code, notes, and snippets.

@enzzoperez
Last active October 13, 2018 04:46
Show Gist options
  • Save enzzoperez/e3174eb6c1d8e2b4aac5447d0f73f28d to your computer and use it in GitHub Desktop.
Save enzzoperez/e3174eb6c1d8e2b4aac5447d0f73f28d to your computer and use it in GitHub Desktop.
//Url para desarrollo, COMENTAR la siguiente linea en produccion
const URL_BASE: "localhost:3000"
//Url para produccion, DESCOMENTAR la siguiente linea en produccion
//const URL_BASE: 'https://myawesomeapi.com/api/
const miFuncion = () => {
fetch(URL_BASE)
.then(<--algo-->)
.catch(<--algo-->)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment