Files
pas/theme/packages/main/src/main.ts
Marek Lesko 08d4432351 Changes
2025-10-14 08:22:01 +00:00

8 lines
250 B
TypeScript
Executable File

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