mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 11:03:53 +08:00
This commit relocates the DI tokens to a dedicated entry point. This change ensures that we do not depend on tree-shaking to eliminate server code from client bundles. Closes #28670
20 lines
481 B
TypeScript
20 lines
481 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 * from './private_export';
|
|
|
|
export { AngularAppEngine } from './src/app-engine';
|
|
export { createRequestHandler } from './src/handler';
|
|
|
|
export {
|
|
type PrerenderFallback,
|
|
type ServerRoute,
|
|
provideServerRoutesConfig,
|
|
RenderMode,
|
|
} from './src/routes/route-config';
|