I'm attempting to integrate Angular2 into my ASP.NET application.
The scripts for Angular (as outlined in the QuickStart) are included in _Layout.cshtml. However, I encounter an issue when using the AppComponent selector in a controller's view:
<my-app>please, Angular, load here something...</my-app>
This causes Angular's infrastructure to try loading modules from .../Home/...js instead of the root folder when the request path is .../Home/Index.
Specifically, zone.js receives a 404 error when attempting to fetch main.js from .../Home/app/main.js, even though this folder is actually located in the root directory.
How can I modify this behavior?