Skip to content

Commit

Permalink
Changing to standalone components.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigokamada committed Aug 19, 2024
1 parent c7234ce commit 6f00285
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 24 deletions.
13 changes: 13 additions & 0 deletions src/app/app.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter } from '@angular/router';

import { routes } from './app.routes';

export const appConfig: ApplicationConfig = {
providers: [
provideZoneChangeDetection({
eventCoalescing: true,
}),
provideRouter(routes),
],
};
24 changes: 0 additions & 24 deletions src/app/app.module.ts

This file was deleted.

0 comments on commit 6f00285

Please sign in to comment.