Skip to content

Instantly share code, notes, and snippets.

@NathanWalker
Created June 30, 2022 04:07
Show Gist options
  • Save NathanWalker/f61f2928badb0874dc46672f7a14cc42 to your computer and use it in GitHub Desktop.
Save NathanWalker/f61f2928badb0874dc46672f7a14cc42 to your computer and use it in GitHub Desktop.
Angular web bootstrap
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
import { AppModule } from "./app/app.module";
// locate the app-root and bootstrap the component in it's place
platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err) => console.error(err));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment