NET-Web-API-w-Angular/my-app/node_modules/@schematics/angular/server/files/standalone-src/main.server.ts.template

7 lines
264 B
Text
Executable file

import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';
const bootstrap = () => bootstrapApplication(AppComponent, config);
export default bootstrap;