mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 06:41:45 +08:00
Introduce support for handling request signal abortions in the `AngularServerApp`. This is particularly useful in the development server integration where a 30-second timeout is enforced for requests/responses.
19 lines
664 B
TypeScript
19 lines
664 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
export { getRoutesFromAngularRouterConfig as ɵgetRoutesFromAngularRouterConfig } from './src/routes/ng-routes';
|
|
export {
|
|
ServerRenderContext as ɵServerRenderContext,
|
|
getOrCreateAngularServerApp as ɵgetOrCreateAngularServerApp,
|
|
destroyAngularServerApp as ɵdestroyAngularServerApp,
|
|
} from './src/app';
|
|
export {
|
|
setAngularAppManifest as ɵsetAngularAppManifest,
|
|
setAngularAppEngineManifest as ɵsetAngularAppEngineManifest,
|
|
} from './src/manifest';
|