initial commit

This commit is contained in:
Myx
2024-10-07 21:10:08 +02:00
commit 16fb7bf4e1
23 changed files with 13293 additions and 0 deletions

8
src/app/app.config.ts Normal file
View File

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