mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 03:23:57 +08:00
This commit introduces the new hybrid rendering API for Angular's Server-Side Rendering (SSR). The API aims to enhance the flexibility of SSR as discussed in https://github.com/angular/angular/discussions/56785 - This API is currently not accessible. - Additional work is required in the Angular CLI to: - Wire up the manifest. - Integrate other necessary components.
19 lines
560 B
TypeScript
19 lines
560 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 {
|
|
CommonEngine,
|
|
type CommonEngineRenderOptions,
|
|
type CommonEngineOptions,
|
|
} from './src/common-engine/common-engine';
|
|
|
|
// TODO(alanagius): enable at a later stage
|
|
// export { AngularAppEngine } from './src/app-engine';
|
|
// export { AngularServerApp } from './src/app';
|
|
// export { REQUEST, REQUEST_CONTEXT, RESPONSE_INIT } from './src/tokens';
|