Skip to content

Commit

Permalink
docs: minor updates to hybrid rendering docs
Browse files Browse the repository at this point in the history
Fix typos and some minor things
  • Loading branch information
alan-agius4 committed Nov 21, 2024
1 parent 466d557 commit 286d06e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adev/src/content/guide/hybrid-rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ import express from 'express';
const app = express();
const angularApp = new AngularNodeAppEngine();

app.get('*', (req, res, next) =>
app.use('*', (req, res, next) => {
angularApp
.handle(req)
.then(response => {
Expand All @@ -319,4 +319,4 @@ app.get('*', (req, res, next) =>
* The request handler used by the Angular CLI (dev-server and during build).
*/
export const reqHandler = createNodeRequestHandler(app);
```v
```

0 comments on commit 286d06e

Please sign in to comment.