/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/src/main.ts
13 строк
445 B
Matthieu Riegler
docs(docs-infra): remove compiler import (#55229)
08 апр 2024, 21:31
08 апр 2024, 21:31
e57042e
Код
Авторство
О чём код?
/*! * @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} from '@angular/platform-browser'; import {appConfig} from './app/app.config'; import {AppComponent} from './app/app.component'; bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));