Files
playground-frontend/src/main.ts
Lobo 93b2a0fed7
All checks were successful
Build & Push Frontend A / docker (push) Successful in 42s
Extended project page a little bit
2026-01-01 12:57:23 +01:00

15 lines
459 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import packageJson from '../package.json';
import {AppComponent} from './app/layout/app/app.component';
import { register } from 'swiper/element/bundle';
register();
if (packageJson.version) {
console.log(`🌟 Frontend version: ${packageJson.version}`);
}
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));