From 9fb7987c6937dc226537a24d9ae76d8f56cf882f Mon Sep 17 00:00:00 2001 From: Tim de Koning Date: Fri, 5 May 2017 01:44:28 +0200 Subject: [PATCH] #1874 - A warning when using _document.js (#1884) --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index a540ff2331..e3ca400827 100644 --- a/readme.md +++ b/readme.md @@ -614,6 +614,8 @@ The `ctx` object is equivalent to the one received in all [`getInitialProps`](#f - `renderPage` (`Function`) a callback that executes the actual React rendering logic (synchronously). It's useful to decorate this function in order to support server-rendering wrappers like Aphrodite's [`renderStatic`](https://github.com/Khan/aphrodite#server-side-rendering) +__Note: React-components outside of `
` will not be initialised by the browser. If you need shared components in all your pages (like a menu or a toolbar), do _not_ add application logic here, but take a look at [this example](https://github.com/zeit/next.js/tree/master/examples/layout-component).__ + ### Custom error handling 404 or 500 errors are handled both client and server side by a default component `error.js`. If you wish to override it, define a `_error.js`: -- GitLab