/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/ssr-benchmarks/src/app/app.config.ts
15 строк
511 B
Andrew Scott
feat(core): Move zoneless change detection to dev preview (#60748)
23 апр 2025, 12:47
23 апр 2025, 12:47
953c4b2
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {ApplicationConfig, provideZonelessChangeDetection} from '@angular/core'; import {provideClientHydration, withEventReplay} from '@angular/platform-browser'; export const appConfig: ApplicationConfig = { providers: [provideZonelessChangeDetection(), provideClientHydration(withEventReplay())], };