Skip to content

Commit 30a4d91

Browse files
chore: update fonts and fix routing (#4310)
1 parent 27c1d0c commit 30a4d91

File tree

3 files changed

+10336
-10335
lines changed

3 files changed

+10336
-10335
lines changed

examples-standalone/spreadsheet-app/src/app/app-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const routes: Routes = [
1515
];
1616

1717
@NgModule({
18-
imports: [RouterModule.forRoot(routes)],
18+
imports: [RouterModule.forRoot(routes, { useHash: true })],
1919
exports: [RouterModule],
2020
})
2121
export class AppRoutingModule {}

examples-standalone/spreadsheet-app/src/app/app.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { NgModule } from "@angular/core";
22
import { BrowserModule } from "@angular/platform-browser";
33
import { ReactiveFormsModule } from "@angular/forms";
44
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
5+
import {APP_BASE_HREF} from '@angular/common';
56

67
import { AppRoutingModule } from "./app-routing.module";
78
import { AppComponent } from "./app.component";
@@ -45,7 +46,7 @@ import { NotificationModule } from "@progress/kendo-angular-notification";
4546
ToolBarModule,
4647
NotificationModule,
4748
],
48-
providers: [],
49+
providers: [{provide: APP_BASE_HREF, useValue: '/spreadsheet-app/'}],
4950
bootstrap: [AppComponent],
5051
})
5152
export class AppModule {}

0 commit comments

Comments
 (0)