Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/canary' into fix/external-gssp…
Browse files Browse the repository at this point in the history
…-redirect
  • Loading branch information
ijjk committed Apr 4, 2021
2 parents 0821b57 + 0d98cd9 commit 3c02253
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/custom-server-express/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ npm install body-parser

Use the package within server.js:

```bash
const bodyParser = require('body-parser');
```js
const bodyParser = require('body-parser')

app.prepare().then(() => {
const server = express();
const server = express()
server.use(bodyParser.urlencoded({ extended: true }))
server.use(bodyParser.json())
})
Expand Down

0 comments on commit 3c02253

Please sign in to comment.