From 9bdc1c9cd14541b42b9d07b240fbf21d25045ced Mon Sep 17 00:00:00 2001 From: cyber-dream Date: Wed, 2 Nov 2022 02:52:55 +0300 Subject: [PATCH] set loading screen as default --- src/app/modules/app-routing.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/modules/app-routing.module.ts b/src/app/modules/app-routing.module.ts index 0aaa34f..d468c51 100644 --- a/src/app/modules/app-routing.module.ts +++ b/src/app/modules/app-routing.module.ts @@ -12,7 +12,7 @@ const routes: Routes = [ component: PlaygroundComponent, }, { - path: '', + path: 'main', loadChildren: () => MainRoutingModule, }, { @@ -24,7 +24,7 @@ const routes: Routes = [ component: SignInComponent, }, { - path: 'loading', + path: '', component: LoadingScreenComponent, }, ];