Working on a web application using Angular and ASP.NET Web API in Visual Studio 2015 has been quite the journey for me.
Upon running the solution in VS2015
, I encountered two tabs opening in Chrome - one for my Angular client-side application and another for the ASP.NET Web API that was automatically created at the project's inception.
Interestingly, these two were functioning on different local ports. After successfully deploying the project to appharbor
, clicking on 'go to my application'
resulted in displaying the web pages of the ASP.NET Web API instead of my client side application.
I'm struggling with accessing the web pages for the client side application. Any ideas on how to ensure that the host URL displays my client side application instead?
Thanks in advance!