We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My serverless.yml references an external file:
custom: ${file(../../serverless.common.yml):custom}
Placing settings inside serverless.common.yml:
custom: dotenv: path: ../../.env
serverless.dotenv-plugin ignores these settings. When debugging plugin code, row 13 leaves this.config undefined:
this.config = this.serverless.service.custom && this.serverless.service.custom['dotenv']
because this.serverless.service.custom equals: "${file(../../serverless.common.yml):custom}"
this.serverless.service.custom
"${file(../../serverless.common.yml):custom}"
The text was updated successfully, but these errors were encountered:
This looks like a duplicate of #52, and I would like to keep the conversation. Please reopen this issue if it is not.
Thanks!
Sorry, something went wrong.
No branches or pull requests
My serverless.yml references an external file:
Placing settings inside serverless.common.yml:
serverless.dotenv-plugin ignores these settings.
When debugging plugin code, row 13 leaves this.config undefined:
because
this.serverless.service.custom
equals:"${file(../../serverless.common.yml):custom}"
The text was updated successfully, but these errors were encountered: