Skip to content

Commit

Permalink
chore: update fonts and fix routing
Browse files Browse the repository at this point in the history
  • Loading branch information
yanmariomenev committed May 22, 2024
1 parent 27c1d0c commit 8e2b9cf
Show file tree
Hide file tree
Showing 3 changed files with 10,336 additions and 10,335 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const routes: Routes = [
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
imports: [RouterModule.forRoot(routes, { useHash: true })],
exports: [RouterModule],
})
export class AppRoutingModule {}
3 changes: 2 additions & 1 deletion examples-standalone/spreadsheet-app/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { ReactiveFormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import {APP_BASE_HREF} from '@angular/common';

import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
Expand Down Expand Up @@ -45,7 +46,7 @@ import { NotificationModule } from "@progress/kendo-angular-notification";
ToolBarModule,
NotificationModule,
],
providers: [],
providers: [{provide: APP_BASE_HREF, useValue: '/spreadsheet-app/'}],
bootstrap: [AppComponent],
})
export class AppModule {}
Loading

0 comments on commit 8e2b9cf

Please sign in to comment.