/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/hydration/baseline/main.ts
18 строк
569 B
Paul Gschwendtner
build: rework benchmarks and examples in `modules/` to new optimization rule (#61566)
29 май 2025, 21:39
29 май 2025, 21:39
9d7768c
Код
Авторство
О чём код?
/** * @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 {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser'; import {init, syncUrlParamsToForm} from '../init'; import {AppComponent} from '../table'; syncUrlParamsToForm(); bootstrapApplication(AppComponent, { providers: [provideProtractorTestingSupport()], }).then((appRef) => init(appRef, false /* insertSsrContent */));