/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/js-web-frameworks/ng2/main.ts
18 строк
581 B
Kristiyan Kostadinov
build: switch benchmarks to standalone (#62096)
23 июн 2025, 15:24
23 июн 2025, 15:24
f5180b6
Код
Авторство
О чём код?
/** * @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 {enableProdMode, NgZone, ɵNoopNgZone} from '@angular/core'; import {bootstrapApplication} from '@angular/platform-browser'; import {init} from './init'; import {JsWebFrameworksComponent} from './rows'; enableProdMode(); bootstrapApplication(JsWebFrameworksComponent, { providers: [{provide: NgZone, useClass: ɵNoopNgZone}], }).then(init, (e) => console.error(e));