I'm currently working on an Angular 10 web application and I am looking to access the configurations in the appsettings.json file from the Angular Home component.
Below is the content of the appsettings.json file that I need to retrieve:
"Application": {
"ServiceUrl": "http://localhost:6000/",
"LogServiceURL": "http://localhost:6002/"
}
I would greatly appreciate any assistance in finding the most effective solution for this. Thank you!