is it possible to have some of the pages using the PathLocationStrategy and some the HashLocationStrategy?
For example the login will not have any hash and the rest of the pages will have a hash in the URL.
Currently I do not see an easy way to do this. It is either all of them with or without a hash like the example below:
@NgModule({
imports: [
RouterModule.forRoot(LAYOUT_ROUTES, { useHash: false , enableTracing: DEBUG_INFO_ENABLED })
],
exports: [
RouterModule
]
})
Thank you