-2

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 1

0

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);
2
  • thanks, will try this. Also, how do i come back to App after login ?
    – A V
    Commented 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

Not the answer you're looking for? Browse other questions tagged or ask your own question.