Skip to content

Commit 8c5b335

Browse files
committed
docs: update fastify.io links to fastify.dev
1 parent 64e8a5c commit 8c5b335

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/techniques/performance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function bootstrap() {
3939
bootstrap();
4040
```
4141

42-
By default, Fastify listens only on the `localhost 127.0.0.1` interface ([read more](https://www.fastify.io/docs/latest/Guides/Getting-Started/#your-first-server)). If you want to accept connections on other hosts, you should specify `'0.0.0.0'` in the `listen()` call:
42+
By default, Fastify listens only on the `localhost 127.0.0.1` interface ([read more](https://fastify.dev/docs/latest/Guides/Getting-Started/#your-first-server)). If you want to accept connections on other hosts, you should specify `'0.0.0.0'` in the `listen()` call:
4343

4444
```typescript
4545
async function bootstrap() {
@@ -76,7 +76,7 @@ new FastifyAdapter({ logger: true });
7676

7777
#### Middleware
7878

79-
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,
79+
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://fastify.dev/docs/latest/Reference/Middleware/) for more information,
8080

8181
```typescript
8282
@@filename(logger.middleware)

0 commit comments

Comments
 (0)