Files
angular-22-ssr-pwa/src/main.server.ts
2026-04-21 17:52:27 +04:00

8 lines
288 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;