mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 04:26:01 +08:00
This commit revises the app-shell and ssr schematics to incorporate the new Server Rendering API, along with the integration of server-side routes. BREAKING CHANGE: The app-shell schematic is no longer compatible with Webpack-based builders.
8 lines
264 B
Plaintext
8 lines
264 B
Plaintext
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;
|