From e28ce34ccb3b656eb24c9e8d555f6b18d386b71c Mon Sep 17 00:00:00 2001 From: Piotr Kuczynski Date: Wed, 20 May 2020 16:50:06 +0200 Subject: [PATCH] Fix the link for Custom Server documentation (#13137) --- examples/custom-server-koa/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-server-koa/README.md b/examples/custom-server-koa/README.md index 7e39281c3f..c5ebb69d5a 100644 --- a/examples/custom-server-koa/README.md +++ b/examples/custom-server-koa/README.md @@ -1,6 +1,6 @@ # Custom Koa Server example -Most of the times the default Next server will be enough but sometimes you want to run your own server to customize routes or other kind of the app behavior. Next provides a [Custom server and routing](https://github.com/zeit/next.js#custom-server-and-routing) so you can customize as much as you want. +Most of the times the default Next server will be enough but sometimes you want to run your own server to customize routes or other kind of the app behavior. Next provides a [Custom server and routing](https://nextjs.org/docs/advanced-features/custom-server) so you can customize as much as you want. Because the Next.js server is just a node.js module you can combine it with any other part of the node.js ecosystem. in this case we are using [Koa](http://koajs.com/) to build a custom router on top of Next. -- GitLab