main.server.ts 281 Bytes
Newer Older
Trần Anh Phú's avatar
Trần Anh Phú committed
1 2 3 4 5 6 7
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/+shell/feature/shell.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);

export default bootstrap;