@angular/ssr 21.2.3 → 21.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/ssr",
|
|
3
|
-
"version": "21.2.
|
|
3
|
+
"version": "21.2.5",
|
|
4
4
|
"description": "Angular server side rendering utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@angular-devkit/schematics": "workspace:*",
|
|
32
|
-
"@angular/common": "21.2.
|
|
33
|
-
"@angular/compiler": "21.2.
|
|
34
|
-
"@angular/core": "21.2.
|
|
35
|
-
"@angular/platform-browser": "21.2.
|
|
36
|
-
"@angular/platform-server": "21.2.
|
|
37
|
-
"@angular/router": "21.2.
|
|
32
|
+
"@angular/common": "21.2.6",
|
|
33
|
+
"@angular/compiler": "21.2.6",
|
|
34
|
+
"@angular/core": "21.2.6",
|
|
35
|
+
"@angular/platform-browser": "21.2.6",
|
|
36
|
+
"@angular/platform-server": "21.2.6",
|
|
37
|
+
"@angular/router": "21.2.6",
|
|
38
38
|
"@schematics/angular": "workspace:*",
|
|
39
39
|
"beasties": "0.4.1"
|
|
40
40
|
},
|
|
@@ -123,6 +123,7 @@ declare class AngularAppEngine {
|
|
|
123
123
|
* @param options Options for the Angular server application engine.
|
|
124
124
|
*/
|
|
125
125
|
constructor(options?: AngularAppEngineOptions);
|
|
126
|
+
private getAllowedHosts;
|
|
126
127
|
/**
|
|
127
128
|
* Handles an incoming HTTP request by serving prerendered content, performing server-side rendering,
|
|
128
129
|
* or delivering a static file for client-side rendered routes based on the `RenderMode` setting.
|