docs: Update request handler to use handle method

there is no request method the correct method is hanlde
This commit is contained in:
Santosh Yadav
2026-09-01 11:31:12 +02:00
committed by Matthew Beck
parent 1b0d861fe5
commit e1bf5393ad
+1 -1
View File
@@ -659,7 +659,7 @@ const angularApp = new AngularAppEngine();
* This is a request handler used by the Angular CLI (dev-server and during build).
*/
export const reqHandler = createRequestHandler(async (req: Request) => {
const res: Response | null = await angularApp.render(req);
const res: Response | null = await angularApp.handle(req);
// ...
});