Hello,
Thank you for this wonderful plugin, however I cannot get the hot reloading working. I did everything like in the docs, but I have typescript re-transpiling on change but then the server doesn’t pick up that change, doesn’t reload. Here is serverless.yml file I’m using
plugins:
- serverless-plugin-typescript
- serverless-offline-edge-lambda
- "@silvermine/serverless-plugin-cloudfront-lambda-edge"
functions:
lambda:
handler: src/handlers.lambda1
lambdaAtEdge:
eventType: "origin-request"
pathPattern: "*"
includeBody: false
custom:
offlineEdgeLambda:
path: ".build"
Also, it would be nice to have a working example with deployment working as well.