ng-implementation/airwatch/src/main.server.ts

8 lines
236 B
TypeScript
Raw Normal View History

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;