Dashboard returns 404

In my case I was getting 404 on JS/CSS and it was because I had an overly aggressive URL Rewrite rule trying to force a trailing slash on URLs not containing an extension. I simply added:
<add input="{REQUEST_URI}" pattern="^/hangfire.*$" negate="true" />
to my rule and it works great now!

2 Likes