mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 21:42:38 +08:00
This improvement harmonizes the proxy configuration loading mechanisms between the dev-server and ssr-dev-server. Previously, these servers used different methods for loading the proxy configuration, leading to inconsistencies. Notably, the ssr-dev-server was limited to loading configurations only in JSON format. This change enables the ssr-dev-server to support various configuration formats, aligning it with the dev-server's capabilities and improving overall developer experience.
19 lines
603 B
TypeScript
19 lines
603 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.io/license
|
|
*/
|
|
|
|
export * from './default-progress';
|
|
export * from './delete-output-dir';
|
|
export * from './run-module-as-observable-fork';
|
|
export * from './load-proxy-config';
|
|
export * from './normalize-file-replacements';
|
|
export * from './normalize-asset-patterns';
|
|
export * from './normalize-source-maps';
|
|
export * from './normalize-optimization';
|
|
export * from './normalize-builder-schema';
|
|
export * from './url';
|