如何更改nodemon配置目录?
How to change nodemon config directory?
默认情况下,nodemon 尝试在项目根目录中找到 nodemon.json
配置文件,对吗?
我怎样才能防止这种默认行为?
假设我把这个nodemon.json
文件放在src/config/
中,那么我应该如何配置nodemon来寻找我自己的目录?
来自官方文档和github page:
nodemon supports local and global configuration files. These are usually named nodemon.json and can be located in the current working directory or in your home directory. An alternative local configuration file can be specified with the --config option.
另请查看 extended sample。
看了nodemon的文档后,发现解决方法很简单,只要在脚本中添加即可。
我们必须添加 --config
标志,然后添加目录。
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --config src/config/nodemon.json src/index.js",
},
默认情况下,nodemon 尝试在项目根目录中找到 nodemon.json
配置文件,对吗?
我怎样才能防止这种默认行为?
假设我把这个nodemon.json
文件放在src/config/
中,那么我应该如何配置nodemon来寻找我自己的目录?
来自官方文档和github page:
nodemon supports local and global configuration files. These are usually named nodemon.json and can be located in the current working directory or in your home directory. An alternative local configuration file can be specified with the --config option.
另请查看 extended sample。
看了nodemon的文档后,发现解决方法很简单,只要在脚本中添加即可。
我们必须添加 --config
标志,然后添加目录。
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --config src/config/nodemon.json src/index.js",
},