mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds a dev app that can be used to prototype and debug things while developing Angular. Use `pnpm dev` to run it.
7 lines
282 B
TypeScript
7 lines
282 B
TypeScript
import {BootstrapContext, bootstrapApplication} from '@angular/platform-browser';
|
|
import {App} from './app/app';
|
|
import {config} from './app/app.config.server';
|
|
|
|
const bootstrap = (context: BootstrapContext) => bootstrapApplication(App, config, context);
|
|
|
|
export default bootstrap;
|