/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/cli-hello-world-lazy/src/main.ts
9 строк
378 B
Joey Perrott
refactor: apply prettier formatting to integration (#54653)
02 апр 2024, 23:42
02 апр 2024, 23:42
894c1c5
Код
Авторство
О чём код?
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser'; import {provideRouter} from '@angular/router'; import {AppComponent} from './app/app.component'; import {appRoutes} from './app/app.routes'; bootstrapApplication(AppComponent, { providers: [provideRouter(appRoutes), provideProtractorTestingSupport()], }).catch(console.error);