Skip to content

Instantly share code, notes, and snippets.

@Weiyuan-Lane
Last active August 10, 2019 07:18
Show Gist options
  • Save Weiyuan-Lane/4321d2cd07a956da931269268a12f72d to your computer and use it in GitHub Desktop.
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
{
"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