S SmartDocs
Serie: angular typescript 5 righe · Aggiornato 2026-02-03

main.ts

angular/examples/week03-04/src/main.ts

import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { appConfig } from './app/app.config';

bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));

Articoli correlati