I have built a small extension where I had to hard-code URLs in many places(like manifest.json, etc). But I want the domain of the URLs differ between dev & production environment. Wondering what is the right practice.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can try creating a JSON file and have different key, value pairs in it in the following manner:
and then load settings.json into your main script and access the setting dynamically depending upon the environment that you've chosen in the following manner:
It will help you to get custom settings depending upon the environment more easily, you can though also try using an application object in your JS file with the same properties, its almost the same manner, though it is advisable to seperate settings and main logic from each other. |
|||||||
|