8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
||
|
|
import { App } from './app/app';
|
||
|
|
import { config } from './app/app.config.server';
|
||
|
|
|
||
|
|
const bootstrap = () => bootstrapApplication(App, config);
|
||
|
|
|
||
|
|
export default bootstrap;
|