1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Remove useless config override (#790)

This commit is contained in:
Sébastien Dubois 2017-01-16 19:24:33 +02:00 committed by Dan Zajdband
parent 807d4be9ff
commit ffeeb682af

View file

@ -2,7 +2,7 @@ const express = require('express')
const next = require('next')
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dir: '.', dev })
const app = next({ dev })
const handle = app.getRequestHandler()
app.prepare()