mirror of
https://github.com/a-mayb3/KanbanCloneAngular.git
synced 2026-03-21 18:05:38 +01:00
Angular project generation
This commit is contained in:
parent
f3f4ef244a
commit
9ab0505ed4
23 changed files with 9416 additions and 23 deletions
11
src/app/app.config.ts
Normal file
11
src/app/app.config.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
||||
import { provideRouter } from '@angular/router';
|
||||
|
||||
import { routes } from './app.routes';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [
|
||||
provideBrowserGlobalErrorListeners(),
|
||||
provideRouter(routes)
|
||||
]
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue