From 13a29b9f2ad041941e0efc6f6a8895431c281356 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 3 Apr 2024 18:08:46 +0000 Subject: [PATCH] chore: version 18.0.0-next.2 --- ponyracer/package.json | 4 ++-- ponyracer/src/app/app.config.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 81e48c4bd..3ddb66e96 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -23,8 +23,8 @@ "zone.js": "~0.14.3" }, "devDependencies": { - "@angular-devkit/build-angular": "^18.0.0-next.1", - "@angular/cli": "^18.0.0-next.1", + "@angular-devkit/build-angular": "^18.0.0-next.2", + "@angular/cli": "^18.0.0-next.2", "@angular/compiler-cli": "^18.0.0-next.0", "@types/jasmine": "~5.1.0", "jasmine-core": "~5.1.0", diff --git a/ponyracer/src/app/app.config.ts b/ponyracer/src/app/app.config.ts index 6c6ef6035..a1e7d6f86 100644 --- a/ponyracer/src/app/app.config.ts +++ b/ponyracer/src/app/app.config.ts @@ -1,8 +1,8 @@ -import { ApplicationConfig } from '@angular/core'; +import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; export const appConfig: ApplicationConfig = { - providers: [provideRouter(routes)] + providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)] };