Files
dinggadingga-frontend/src/main.server.ts
2026-06-11 01:20:39 +02:00

8 lines
288 B
TypeScript

import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { App } from './app/app';
import { config } from './app/app.config.server';
const bootstrap = (context: BootstrapContext) => bootstrapApplication(App, config, context);
export default bootstrap;