mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit introduces integration tests for hydration and event reply functionalities. Additionally, it implements a payload size check for the `event-dispatch-contract.min.js`. PR Close #55708
7 lines
291 B
TypeScript
7 lines
291 B
TypeScript
import {bootstrapApplication} from '@angular/platform-browser';
|
|
import {appConfig} from './app/app.config';
|
|
import {AppComponent} from './app/app.component';
|
|
|
|
(globalThis as any)['doBootstrap'] = () => {
|
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|
|
};
|