From da7d78d2f946d8df7b183f4b4cafa0a093b9b276 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 7 Apr 2020 21:22:31 -0700 Subject: [PATCH] Remove the hash from the URLs. I'm not sure why it was added. --- src/app/app.routing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index da721d6..11c90ac 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -22,7 +22,7 @@ const routes: Routes = [ { path: 'themes', component: ThemesComponent} ]; @NgModule({ - imports: [RouterModule.forRoot(routes, {useHash: true})], + imports: [RouterModule.forRoot(routes)], exports: [RouterModule] })