I've created a fresh Angular project, and I built it with ng build. Then I copied it to c:\inetpub\wwwroot\MyProject\. I've added it using "Convert to Application" in IIS Manager.
I then browse it, using http://localhost:81/MyProject/, but all subsequent requests made by Angular fail because they lack the /MyProject at the root. For example, from the tooltip, it tries to load inline.bundle.js from http://localhost:81/inline.bundle.js/ instead of http://localhost:81/MyProject/inline.bundle.js/
How can I make it take into account the root MyProject?

