Node.js Alexa Task Issue
I\'m currently coding a Node.js Alexa Task via AWS Lambda, and I have been trying to code a function that receives informat
In my case it was because I had the handler file in inner src directory.
I had to change the 'Handler' property within Lambda from:
index.handler
to
src/index.handler