ng-implementation/airwatch/src/main.server.ts
2025-09-09 14:43:57 +02:00

7 lines
236 B
TypeScript

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;