initial commit

This commit is contained in:
Tom
2024-07-06 01:01:52 +00:00
commit f2133bbc0e
25 changed files with 14701 additions and 0 deletions

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

@ -0,0 +1,9 @@
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
import { provideClientHydration } from '@angular/platform-browser';
export const appConfig: ApplicationConfig = {
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration()]
};