Upgrade angular from 18 to 19.

This commit is contained in:
Florian THIERRY
2025-12-30 17:18:50 +01:00
parent f3ca55bff0
commit bee8129c0b
25 changed files with 4526 additions and 3837 deletions

View File

@@ -7,16 +7,15 @@ import { HomeService } from './home.service';
import { CommonModule } from '@angular/common';
@Component({
selector: 'app-home',
standalone: true,
imports: [
CommonModule,
MatProgressSpinnerModule,
PublicationListComponent
],
templateUrl: './home.component.html',
styleUrl: './home.component.scss',
providers: [HomeService]
selector: 'app-home',
imports: [
CommonModule,
MatProgressSpinnerModule,
PublicationListComponent
],
templateUrl: './home.component.html',
styleUrl: './home.component.scss',
providers: [HomeService]
})
export class HomeComponent implements OnInit {
private homeService = inject(HomeService);