Skip to content

Commit

Permalink
Merge pull request #1 from qnten/patch-1
Browse files Browse the repository at this point in the history
Fix isDev check
  • Loading branch information
trezy authored Jan 6, 2021
2 parents 2edd5b6 + 4b4afce commit 01ed86a
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 @@ -34,7 +34,7 @@ yarn add next-safe
```js
const nextSafe = require('next-safe')

const isDev = process.env.NODE_ENV === 'production'
const isDev = process.env.NODE_ENV !== 'production'

module.exports = {
async headers () {
Expand Down

0 comments on commit 01ed86a

Please sign in to comment.