Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 23, 2019 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/06258995607d0172a0966d2a86eafcca to your computer and use it in GitHub Desktop.
Save parzibyte/06258995607d0172a0966d2a86eafcca to your computer and use it in GitHub Desktop.
if (process.env.NODE_ENV === "development") {
// Estamos en modo desarrollo
console.log("Modo desarrollo");
} else {
// En producción
console.log("Modo producción");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment