/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/scenes/src/main.ts
30 строк
948 B
Kristiyan Kostadinov
build: reuse tslint rules for docs site and fix failures
29 апр 2025, 15:02
29 апр 2025, 15:02
da9627d
Код
Авторство
О чём код?
/** * @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 {AppComponent} from './app/app.component'; import {provideNativeDateAdapter, MATERIAL_ANIMATIONS} from '@angular/material/core'; import {routes} from './app/app-routes'; import {bootstrapApplication} from '@angular/platform-browser'; import {SceneOverlayContainer} from './app/scene-overlay-container'; import {OverlayContainer} from '@angular/cdk/overlay'; import {provideRouter} from '@angular/router'; bootstrapApplication(AppComponent, { providers: [ provideNativeDateAdapter(), { provide: OverlayContainer, useClass: SceneOverlayContainer, }, { provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}, }, provideRouter(routes), ], }).catch(err => console.error(err));