Newer
Older
homespace / src / main.server.ts
@agalyaramadoss agalyaramadoss on 20 Nov 292 bytes fixed
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;