i have a Login module which contains login.html. i want login to be the default module and login.html as the default opening page.
1 Answer
in main.ts file you will have something like this
import { AppModule } from './app.module';
platformBrowserDynamic().bootstrapModule(AppModule);
replace this with
import { LoginModule } from './login.module';
platformBrowserDynamic().bootstrapModule(LoginModule);
-
thanks, will try this. Also, how do i come back to App after login ?– A VCommented Sep 8, 2021 at 10:13
-
Not very sure but just like any other page you can set route to your App..and then navigate to that route Commented Sep 8, 2021 at 18:38