sharepulse/frontend/src/app/app.config.ts
Max e24d4c34f4 initial frontend commit
- Empty frontent project with --routing param
2024-01-28 12:00:13 +01:00

9 lines
227 B
TypeScript

import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [provideRouter(routes)]
};