Files
HomePantry-Angular/src/main.ts
T
2026-07-16 12:24:21 +02:00

7 lines
222 B
TypeScript
Executable File

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