You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/src/builders/application/schema.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -426,11 +426,11 @@
426
426
"properties": {
427
427
"routesFile": {
428
428
"type": "string",
429
-
"description": "The path to a file containing routes separated by newlines."
429
+
"description": "The path to a file that contains a list of all routes to prerender, separated by newlines. This option is useful if you want to prerender routes with parameterized URLs."
430
430
},
431
431
"discoverRoutes": {
432
432
"type": "boolean",
433
-
"description": "Whether the builder should discover routers using the Angular Router.",
433
+
"description": "Whether the builder should process the Angular Router configuration to find all unparameterized routes and prerender them.",
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/src/builders/prerender/schema.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
},
16
16
"routesFile": {
17
17
"type": "string",
18
-
"description": "The path to a file containing routes separated by newlines."
18
+
"description": "The path to a file that contains a list of all routes to prerender, separated by newlines. This option is useful if you want to prerender routes with parameterized URLs."
19
19
},
20
20
"routes": {
21
21
"type": "array",
@@ -29,7 +29,7 @@
29
29
},
30
30
"discoverRoutes": {
31
31
"type": "boolean",
32
-
"description": "Whether the builder should discover routers using the Angular Router.",
32
+
"description": "Whether the builder should process the Angular Router configuration to find all unparameterized routes and prerender them.",
0 commit comments