S SmartDocs
シリーズ: angular typescript 5 行 · 更新日 2026-02-03

main.ts

angular/examples/week01-02/src/main.ts

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));

関連記事