main.server.ts.template 264 B

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