feat: reworked portfolio

This commit is contained in:
2026-04-17 23:40:29 +02:00
parent b0e7a71a0c
commit d34b2aa669
71 changed files with 11627 additions and 5197 deletions
+14 -5
View File
@@ -1,9 +1,18 @@
import {bootstrapApplication} from '@angular/platform-browser';
import {ApplicationRef} from '@angular/core';
import type { BootstrapContext } from '@angular/platform-browser';
import { bootstrapApplication } from '@angular/platform-browser';
import type { ApplicationRef } from '@angular/core';
import { provideZoneChangeDetection } from '@angular/core';
import {AppComponent} from './app/app.component';
import {config} from './app/app.config.server';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';
const bootstrap: () => Promise<ApplicationRef> = (): Promise<ApplicationRef> => bootstrapApplication(AppComponent, config);
const bootstrap: (context: BootstrapContext) => Promise<ApplicationRef> = (
context: BootstrapContext,
): Promise<ApplicationRef> =>
bootstrapApplication(
AppComponent,
{ ...config, providers: [provideZoneChangeDetection(), ...config.providers] },
context,
);
export default bootstrap;