Running Angular under Virtual Directory on IIS

Viewed 5418

This question is related to Angular2+ (not AngularJS)

We are trying to host our angular site under a virtual directory under a website on IIS.

We have a Website Called Development that points to: C:\inetpub\wwwroot\Development. In this folder we have another folder called Web. This Web folder holds the angular site code (built with ng build --base-href "/Web" --deploy-url "/Web"

When we navigate to http://server/Web, everything seems to be loading fine, except for the 0.chuck.js file. For some reason this file is being requested as:

http://server/Web0.chuck.jsenter image description here

It seems like the "/" is missing before the 0, but I'm not sure where this setting could be handled.

Any ideas?

1 Answers
Related