Skip to content

Commit

Permalink
docs: add missing fat arrow (#4245)
Browse files Browse the repository at this point in the history
  • Loading branch information
gokaygurcan authored and timneutkens committed May 1, 2018
1 parent 9578e9f commit 121f6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ Phases can be imported from `next/constants`:

```js
const {PHASE_DEVELOPMENT_SERVER} = require('next/constants')
module.exports = (phase, {defaultConfig}){
module.exports = (phase, {defaultConfig}) => {
if(phase === PHASE_DEVELOPMENT_SERVER) {
return {
/* development only config options here */
Expand Down

0 comments on commit 121f6c2

Please sign in to comment.