https://github.com/angular/angular
Raw File
Tip revision: 1bf99e2f9265ce5c289763c5150c3ba4264fd7aa authored by Alex Rickabaugh on 06 July 2023, 23:43:26 UTC
release: cut the v16.1.4 release
Tip revision: 1bf99e2
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