Last active
August 10, 2019 07:18
-
-
Save Weiyuan-Lane/4321d2cd07a956da931269268a12f72d to your computer and use it in GitHub Desktop.
Use nodemon instead to choose for relevant files to watch in development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"start": "nodemon --exec 'next build && next start'" | |
}, | |
"devDependencies": { | |
"nodemon": "~1.19.1", | |
}, | |
"nodemonConfig": { | |
"ignore": [ | |
"node_modules/*", | |
"dist/*", | |
".next/*", | |
"package.json", | |
"package-lock.json" | |
], | |
"delay": "1500" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment