/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/largetable/ng2/main.ts
18 строк
530 B
Andrew Scott
refactor(core): Update tests for zoneless by default (#63668)
10 сен 2025, 00:41
10 сен 2025, 00:41
c357650
Код
Авторство
О чём код?
/** * @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, provideZoneChangeDetection} from '@angular/core'; import {bootstrapApplication} from '@angular/platform-browser'; import {init} from './init'; import {TableComponent} from './table'; enableProdMode(); bootstrapApplication(TableComponent, { providers: [provideZoneChangeDetection()], }).then(init);