I have an Angular 2 application in a subfolder of an ASP.NET project, and would like to bundle the Angular 2 application using the techniques from How to bundle an Angular app for production
The recommended approach there is to set up a project using Angular CLI. However I am having some trouble using that approach since it makes some assumptions about the project structure.
Assuming that the Angular 2 application is located in the subfolder /Angular2App/
it seems Angular CLI would like the index.html
to be located in /Angular2App/src/
, and when bundling the result is located in /Angular2App/dist/
and all references there from that folder's index.html
assume that bundles are located at /
.
However I would simply like the Angular 2 application to be available at /Angular2App/
.
Any ideas as to how I can configure Angular CLI in this way?