.NET core 2.1 base href tag on Angular template
I'm building a template for our team on top of the .NET Core 2.1 + Angular 5 template included in the latest release of core 2.1, we deploy applications into virtual folders, for example /it/myapp, or /aa/myotherapp On the 2.0 template the base href property would be set automatically, I'm assuming because it was built with razor, like this: <base href="~/" /> However this is not true for the 2.1 template, I'm assuming it's because the template actually only uses static files, with the new app.UseSpa() Any ideas on how I could automatically populate the base href tag? Thank you Yes, I know it