We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292a1ae commit 8418842Copy full SHA for 8418842
1 file changed
src/main.ts
@@ -1,4 +1,3 @@
1
-import { provideZoneChangeDetection } from "@angular/core";
2
// SPDX-FileCopyrightText: 2025 Håkon Løvdal <kode@denkule.no>
3
//
4
// SPDX-License-Identifier: GPL-3.0-or-later
@@ -7,6 +6,6 @@ import { bootstrapApplication } from "@angular/platform-browser";
7
6
import { appConfig } from "./app/app.config";
8
import { AppComponent } from "./app/app.component";
9
10
-bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]}).catch((err) =>
+bootstrapApplication(AppComponent, appConfig).catch((err) =>
11
console.error(err)
12
);
0 commit comments