Angular 2 router no base href set

前端 未结 8 917
半阙折子戏
半阙折子戏 2020-11-22 15:19

I am getting an error and can\'t find why. Here is the error:

EXCEPTION: Error during instantiation of LocationStrategy! (RouterOutlet -> Router -> Loc         


        
8条回答
  •  萌比男神i
    2020-11-22 15:56

    Angular 7,8 fix is in app.module.ts

    import {APP_BASE_HREF} from '@angular/common';
    

    inside @NgModule add

    providers: [{provide: APP_BASE_HREF, useValue: '/'}]

提交回复
热议问题