const maxMobileWidthPx = 600;
const isMobile = () => {
return window.innerWidth <= maxMobileWidthPx;
}
const routes: Routes = [
{
path: '', pathMatch: 'full',
redirectTo: isMobile() ? 'mobile' : 'desktop'
},
{
path: 'desktop', component: DesktopComponent
},
{
path: 'mobile', component: MobileComponent
}
]