I have a Node JS function. I'm running Azure Functions Core Tools with VS Code for local debugging.
I have a few dependencies in my node_modules folder which is at root level.
FunctionsProject
| - MyFunction
| | - index.js
| | - function.json
| - node_modules
| - package.json
I then attempt to deploy directly from VSCode using the Azure extension, but only the index.js and function.json files are getting included with my function.
What is the best way to have my node_modules included in the deployment from VSCode?
Thanks