cli/cmd/core-gui/frontend/src/main.server.ts
Snider 823c227c41 restores gui
Signed-off-by: Snider <snider@lt.hn>
2025-11-02 18:04:58 +00:00

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