Files
Portfolio/src/main.server.ts
2026-01-21 04:59:55 +01:00

9 lines
292 B
TypeScript

import { BootstrapContext, bootstrapApplication } 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;