I need to get the full base URL (e.g. http://localhost:5000 or https://productionserver.com) of my Angular 2 app so that I can pass it along to a 3rd party service in the context of the app. The app's location varies depending on whether it is development, various staging/testing environments, or production, and I'd like to detect it dynamically so I don't need to maintain a hard-coded list.
A similar question has been posted in the past, but the answers (i.e. use some version of the window.location.hostname or window.location.origin property) only work when the angular2 app is being rendered by the browser.
I would like my app to work with Angular Universal, which means it needs to be rendered on the server-side where there is no access to DOM objects like window.location
.
Any ideas on how to accomplish this? For reference, using asp.net core
as the back-end (using the default dotnet
new angular template).