“Serverless-offline: route not found.” running an AWS Lambda function in offline mode
问题 This question is pretty much the same as Serverless offline not getting route, but since that one was not answered I'm asking again. I'm trying to follow this article, https://medium.com/@awesome1888/how-to-use-serverless-locally-with-webpack-and-docker-5e268f71715, on how to deploy a Lambda function with Serverless. I have a directory with the following structure: > tree -I node_modules . ├── package-lock.json ├── package.json ├── serverless.yml ├── src │ ├── handler.js │ └── index.js └──