diff --git a/README.md b/README.md index 515594f..9bac2c3 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ fastify.get('/', { websocket: true }, function wsHandler (connection, req) { await fastify.listen({ port: 3000 }) ``` -If you need to handle both HTTP requests and incoming socket connections on the same route, you can still do it using the [full declaration syntax](https://www.fastify.io/docs/latest/Routes/#full-declaration), adding a `wsHandler` property. +If you need to handle both HTTP requests and incoming socket connections on the same route, you can still do it using the [full declaration syntax](https://fastify.dev/docs/latest/Reference/Routes/#full-declaration), adding a `wsHandler` property. ```js 'use strict'