route hasing added..
This commit is contained in:
@ -94,7 +94,7 @@ export const routes: Routes = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [RouterModule.forRoot(routes,{ useHash: true)],
|
imports: [RouterModule.forRoot(routes)],
|
||||||
exports: [RouterModule],
|
exports: [RouterModule],
|
||||||
})
|
})
|
||||||
export class AppRoutingModule {}
|
export class AppRoutingModule {}
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
import {Compiler, NgModule} from '@angular/core';
|
import {Compiler, NgModule} from '@angular/core';
|
||||||
import {BrowserModule} from '@angular/platform-browser';
|
import {BrowserModule} from '@angular/platform-browser';
|
||||||
|
import { HashLocationStrategy, LocationStrategy } from '@angular/common';
|
||||||
|
|
||||||
|
|
||||||
import {AppComponent} from './app.component';
|
import {AppComponent} from './app.component';
|
||||||
import {HTTP_INTERCEPTORS, HttpClientModule} from "@angular/common/http";
|
import {HTTP_INTERCEPTORS, HttpClientModule} from "@angular/common/http";
|
||||||
@ -68,7 +70,9 @@ import { EventFormComponent } from './component/event-form/event-form.component'
|
|||||||
],
|
],
|
||||||
// providers:[],
|
// providers:[],
|
||||||
providers: [Compiler,AuthenticationGuard, AuthenticationService, UserService,BlogService,
|
providers: [Compiler,AuthenticationGuard, AuthenticationService, UserService,BlogService,
|
||||||
{provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true}
|
{provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true},
|
||||||
|
{provide: LocationStrategy, useClass: HashLocationStrategy}
|
||||||
|
|
||||||
],
|
],
|
||||||
bootstrap: [AppComponent]
|
bootstrap: [AppComponent]
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user