I am being redirected properly to the dashboard after I change the useHash to false. After that none of the pages work in the dashboard.
In the network inspector I see a 404 for all the assets.
Are there any other additional configuration that I need to take care of?
I also had the same problem.
"Refused to execute script from '
I have the same issue here... any update ?
After switching to path location strategy you also need to set base href. The preferred way to configure it is to add a <base href> tag in the <head> section of the index.html.
<head>
...
<base href="/">
...
</head>
Most helpful comment
After switching to path location strategy you also need to set base href. The preferred way to configure it is to add a
<base href>tag in the<head>section of theindex.html.