review-front/src/main.server.ts
2024-12-10 18:45:17 +01:00

8 lines
264 B
TypeScript

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