initial commit

This commit is contained in:
MastersGame
2026-06-11 01:05:55 +02:00
commit f837c7e902
26 changed files with 10599 additions and 0 deletions

7
src/main.server.ts Normal file
View File

@@ -0,0 +1,7 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { App } from './app/app';
import { config } from './app/app.config.server';
const bootstrap = () => bootstrapApplication(App, config);
export default bootstrap;