You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
I currently have a Node.js application where the main file is not server.js but actually resides at bin/www, I can change the file name in launch.json for the Launch Server (AZDS) config, however how do I change that for it to work with nodemon in the Attach to Server (AZDS) config?
I can see it still defaults to server.js even after setting the main file in package.json.
The text was updated successfully, but these errors were encountered:
Take a look in the tasks.json file for the attach task. You should see the nodemon command there with the server.js file that you can change to bin/www.
I currently have a Node.js application where the main file is not
server.js
but actually resides at bin/www, I can change the file name inlaunch.json
for theLaunch Server (AZDS)
config, however how do I change that for it to work with nodemon in theAttach to Server (AZDS)
config?I can see it still defaults to
server.js
even after setting the main file inpackage.json
.The text was updated successfully, but these errors were encountered: