/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/platform-server/projects/standalone/src/app/app.config.ts
16 строк
552 B
Andrew Scott
refactor(core): Update tests for zoneless by default (#63668)
10 сен 2025, 00:41
10 сен 2025, 00:41
c357650
Код
Авторство
О чём код?
import {provideHttpClient} from '@angular/common/http'; import {ApplicationConfig} from '@angular/core'; import {provideClientHydration, withIncrementalHydration} from '@angular/platform-browser'; import {provideRouter} from '@angular/router'; import {routes} from './app.routes'; import {provideZoneChangeDetection} from '@angular/core'; export const appConfig: ApplicationConfig = { providers: [ provideZoneChangeDetection(), provideRouter(routes), provideClientHydration(withIncrementalHydration()), provideHttpClient(), ], };