9 lines
292 B
TypeScript
9 lines
292 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;
|