1
0
mirror of https://gitlab.com/openlp/web-remote.git synced 2024-12-25 12:44:06 +00:00

Merge branch 'remove-hash' into 'master'

Remove the hash from the URLs

See merge request 
This commit is contained in:
Tim Bentley 2020-04-08 06:38:54 +00:00
commit 8de783b87f

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]
})