-
-
Save kris-luminar/2175030 to your computer and use it in GitHub Desktop.
toggle_dev_environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dev = "dev", | |
staging = "staging", | |
production = "production", | |
url = window.location, | |
hostname = window.location.hostname; | |
hostname = hostname.split('.'); | |
if (hostname[1] === dev) { | |
hostname[1] = staging; | |
} | |
else if (hostname[1] === staging) { | |
hostname[1] = production; | |
} | |
else { | |
hostname[1] = dev; | |
}; | |
window.location.hostname = hostname.join('.'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment