Files
nexus-spa/src/main.ts
2025-01-07 17:29:51 +03:00

6 lines
239 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app.config';
import { AppComponent } from './app.component';
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));