Skip to content

Commit 749b790

Browse files
Update content/techniques/performance.md
1 parent 22c94eb commit 749b790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ new FastifyAdapter({ logger: true });
7777

7878
#### Middleware
7979

80-
Middleware functions (when `@nestjs/platform-fastify` is used) retrieve the raw `req` and `res` objects instead of Fastify's wrappers. This is how the `middie` package works (that's used under the hood) and `fastify` - check out this [page](https://www.fastify.io/docs/latest/Reference/Middleware/) for more information,
80+
Middleware functions retrieve the raw `req` and `res` objects instead of Fastify's wrappers. This is how the `middie` package works (that's used under the hood) and `fastify` - check out this [page](https://www.fastify.io/docs/latest/Reference/Middleware/) for more information,
8181

8282
> warning **Warning** When using `fastify` as the HTTP engine the request parameter of middleware has a type of `FastifyRequest['raw']` and the response parameter has a type `FastifyReply['raw']`.
8383

0 commit comments

Comments
 (0)