Path problems on Hosted Test

Got it all working!

For future reference I change my base href to:

<base href="./" />

That resolved all (above) but one error, which had to do with the angular router.

Changed my pathMatch, in my router.module files that contained children, from ‘full’ to ‘prefix’.

{
    path: '',
    redirectTo: '...',
    pathMatch: 'prefix'
}