avancement planning
This commit is contained in:
+3
-3
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@schematics/angular",
|
||||
"version": "20.3.10",
|
||||
"version": "20.3.26",
|
||||
"description": "Schematics specific to Angular",
|
||||
"homepage": "https://github.com/angular/angular-cli",
|
||||
"keywords": [
|
||||
@@ -22,8 +22,8 @@
|
||||
},
|
||||
"schematics": "./collection.json",
|
||||
"dependencies": {
|
||||
"@angular-devkit/core": "20.3.10",
|
||||
"@angular-devkit/schematics": "20.3.10",
|
||||
"@angular-devkit/core": "20.3.26",
|
||||
"@angular-devkit/schematics": "20.3.26",
|
||||
"jsonc-parser": "3.3.1"
|
||||
},
|
||||
"repository": {
|
||||
|
||||
+3
-1
@@ -15,7 +15,9 @@ export function app(): express.Express {
|
||||
? join(distFolder, 'index.original.html')
|
||||
: join(distFolder, 'index.html');
|
||||
|
||||
const commonEngine = new CommonEngine();
|
||||
const commonEngine = new CommonEngine({
|
||||
allowedHosts: [/* Configure your hosts here */]
|
||||
});
|
||||
|
||||
server.set('view engine', 'html');
|
||||
server.set('views', distFolder);
|
||||
|
||||
+4
@@ -141,6 +141,10 @@ function updateApplicationBuilderWorkspaceConfigRule(projectSourceRoot, options,
|
||||
}
|
||||
buildTarget.options = {
|
||||
...buildTarget.options,
|
||||
security: {
|
||||
...(buildTarget.options?.security ?? {}),
|
||||
allowedHosts: [],
|
||||
},
|
||||
outputPath,
|
||||
outputMode: 'server',
|
||||
ssr: {
|
||||
|
||||
+3
-3
@@ -16,7 +16,7 @@ exports.latestVersions = {
|
||||
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
||||
Angular: '^20.3.0',
|
||||
NgPackagr: '^20.3.0',
|
||||
DevkitBuildAngular: '^20.3.10',
|
||||
AngularBuild: '^20.3.10',
|
||||
AngularSSR: '^20.3.10',
|
||||
DevkitBuildAngular: '^20.3.26',
|
||||
AngularBuild: '^20.3.26',
|
||||
AngularSSR: '^20.3.26',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user