https://github.com/angular/angular
Raw File
Tip revision: 481198af9253e478f771c1bc56f5d23dbde90b89 authored by Alex Rickabaugh on 04 October 2023, 20:47:05 UTC
release: cut the v16.2.8 release
Tip revision: 481198a
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