I use per-function requirements ├── serverless.yml ├── config │ └── settings.py ├── function1 │ ├── requirements.txt │ └── index.py └── function2 ├── requirements.txt └── index.py serverless.yml is package: individually: true functions: func1: handler: index.handler module: function1 func2: handler: index.handler module: function2 package: include: - config/** issuse is : the config/** wouldn't be include in func2. how can didi it
I use per-function requirements
├── serverless.yml
├── config
│ └── settings.py
├── function1
│ ├── requirements.txt
│ └── index.py
└── function2
├── requirements.txt
└── index.py
serverless.yml is
package:
individually: true
functions:
func1:
handler: index.handler
module: function1
func2:
handler: index.handler
module: function2
package:
include:
- config/**
issuse is : the config/** wouldn't be include in func2. how can didi it