Revert "fix: performance"

This reverts commit cc39abed41.
This commit is contained in:
2026-04-24 18:19:54 +02:00
parent cc39abed41
commit c52856aaba
58 changed files with 140 additions and 195 deletions
+5 -12
View File
@@ -1,17 +1,10 @@
import type { Routes } from '@angular/router';
import { HomeComponent } from './home/home.component';
import { ImprintComponent } from './imprint/imprint.component';
export const routes: Routes = [
{
path: '',
loadComponent: async () =>
(await import('./home/home.component')).HomeComponent,
pathMatch: 'full',
},
{
path: 'imprint',
loadComponent: async () =>
(await import('./imprint/imprint.component')).ImprintComponent,
pathMatch: 'full',
},
{ path: '', component: HomeComponent, pathMatch: 'full' },
{ path: 'imprint', component: ImprintComponent, pathMatch: 'full' },
{ path: '**', redirectTo: '' },
];