https://github.com/angular/angular
Raw File
Tip revision: ea3b5f1cde4ac30551898ada7b68d586be9f93ed authored by Andrew Kushnir on 10 May 2023, 18:18:44 UTC
release: cut the v16.1.0-next.0 release
Tip revision: ea3b5f1
main.ts
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';

platformBrowserDynamic().bootstrapModule(AppModule)
  .catch(err => console.error(err));
back to top