From 910f55ce3bbb3f3ec91f4a4b14b74506bf5dcd35 Mon Sep 17 00:00:00 2001 From: Paul Barry Date: Fri, 21 Jul 2023 20:28:10 -0400 Subject: [PATCH] chore(docs): Fix formatting of markdown table --- .../06-configuring/10-custom-server.mdx | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/03-pages/01-building-your-application/06-configuring/10-custom-server.mdx b/docs/03-pages/01-building-your-application/06-configuring/10-custom-server.mdx index 1e2c2ed28c1c..0dfc20c7f90a 100644 --- a/docs/03-pages/01-building-your-application/06-configuring/10-custom-server.mdx +++ b/docs/03-pages/01-building-your-application/06-configuring/10-custom-server.mdx @@ -88,17 +88,17 @@ const app = next({}) The above `next` import is a function that receives an object with the following options: -|Option|Type|Description| -|------|----|-----------| -|`conf`|`Object`|The same object you would use in [next.config.js](/docs/pages/api-reference/next-config-js). Defaults to `{}`| -|`customServer`|`Boolean`|(_Optional_) Set to false when the server was created by Next.js| -|`dev`|`Boolean`|(_Optional_) Whether or not to launch Next.js in dev mode. Defaults to `false`| -|`dir`|`String`|(_Optional_) Location of the Next.js project. Defaults to `'.'`| -|`minimalMode`|`Boolean`|(_Optional_) Tells if Next.js is running in a Serverless platform| -|`quiet`|`Boolean`|(_Optional_) Hide error messages containing server information. Defaults to `false`| -|`hostname`|`String`|(_Optional_) The hostname the server is running behind| -|`port`|`Number`|(_Optional_) The port the server is running behind| -|`httpServer`|`node:http#Server`|(_Optional_) The HTTP Server that Next.js is running behind| +| Option | Type | Description | +| -------------- | ------------------ | ------------------------------------------------------------------------------------------------------------- | +| `conf` | `Object` | The same object you would use in [next.config.js](/docs/pages/api-reference/next-config-js). Defaults to `{}` | +| `customServer` | `Boolean` | (_Optional_) Set to false when the server was created by Next.js | +| `dev` | `Boolean` | (_Optional_) Whether or not to launch Next.js in dev mode. Defaults to `false` | +| `dir` | `String` | (_Optional_) Location of the Next.js project. Defaults to `'.'` | +| `minimalMode` | `Boolean` | (_Optional_) Tells if Next.js is running in a Serverless platform | +| `quiet` | `Boolean` | (_Optional_) Hide error messages containing server information. Defaults to `false` | +| `hostname` | `String` | (_Optional_) The hostname the server is running behind | +| `port` | `Number` | (_Optional_) The port the server is running behind | +| `httpServer` | `node:http#Server` | (_Optional_) The HTTP Server that Next.js is running behind | The returned `app` can then be used to let Next.js handle requests as required.