/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/projects/shell-browser/src/main.ts
13 строк
445 B
Sheik Althaf
refactor(devtools): convert to bootstrap application for shell and demo apps (#58319)
05 ноя 2024, 09:35
05 ноя 2024, 09:35
ca9998c
Код
Авторство
О чём код?
/** * @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 {appConfig} from './app/app.config'; import {bootstrapApplication} from '@angular/platform-browser'; import {AppComponent} from './app/app.component'; bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));