Skip to content

Commit

Permalink
fix(core): add component inputs (#4)
Browse files Browse the repository at this point in the history
Closes #3
  • Loading branch information
davidtlee authored Jul 12, 2024
1 parent dd79a62 commit d045ae3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/app.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter, withHashLocation, withPreloading, PreloadAllModules } from '@angular/router';
import { provideRouter, withHashLocation, withComponentInputBinding, withPreloading, PreloadAllModules } from '@angular/router';
import { routes } from './app.routes';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import { importProvidersFrom } from '@angular/core';
Expand All @@ -15,6 +15,7 @@ export const appConfig: ApplicationConfig = {
provideRouter(
routes,
withHashLocation(),
withComponentInputBinding(),
withPreloading(PreloadAllModules),
),
provideAnimationsAsync(),
Expand Down

0 comments on commit d045ae3

Please sign in to comment.