Skip to content

Instantly share code, notes, and snippets.

@fredriccliver
Created January 1, 2021 09:45
Show Gist options
  • Save fredriccliver/8a489fa7ce0d1129d65b012d891fec0e to your computer and use it in GitHub Desktop.
Save fredriccliver/8a489fa7ce0d1129d65b012d891fec0e to your computer and use it in GitHub Desktop.
import firebase from "firebase/app"
if (location.hostname == "127.0.0.1" || location.hostname == "localhost") {
console.log("This is local emulator environment")
firebase.functions().useFunctionsEmulator("http://localhost:5001")
}else{
console.log("It is not under emulator environment")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment