Remove the hash from the URLs. I'm not sure why it was added.

This commit is contained in:
Raoul Snyman 2020-04-07 21:22:31 -07:00
parent 7214b892ce
commit da7d78d2f9
Signed by: raoul
GPG Key ID: F55BCED79626AE9C
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ const routes: Routes = [
{ path: 'themes', component: ThemesComponent}
];
@NgModule({
imports: [RouterModule.forRoot(routes, {useHash: true})],
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})