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
Hello, I have used the library in a small project based on serverless framework + typescript and lambda layers
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
When I compile everything is fine but I realize that the file is too heavy since all the modules it uses are compiled and the layers I use are not useful, am I doing something wrong?
I leave part of my project in case someone knows what I could be doing wrong.
Hello, I have used the library in a small project based on serverless framework + typescript and lambda layers
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
When I compile everything is fine but I realize that the file is too heavy since all the modules it uses are compiled and the layers I use are not useful, am I doing something wrong?
I leave part of my project in case someone knows what I could be doing wrong.
service: autoatencion-orchestration
frameworkVersion: "3"
package:
excludeDevDependencies: true
individually: true
provider:
name: aws
runtime: nodejs16.x
versionFunctions: false
stage: ${opt:stage, 'dev'}
plugins:
layers:
BasicDependenciesNodeModules:
path: _layers/base
description: "Base dependencies"
compatibleRuntimes:
- nodejs16.x
SendEmailFnc:
handler: lambdas/orchestration/index.sendEmail
name: SendEmailFnc
layers:
- !Ref BasicDependenciesNodeModulesLambdaLayer
The text was updated successfully, but these errors were encountered: