Hi,
I would like to disable the plugin depending on a variable (usually the stage).
For example:
custom:
exportOutputs: false
or
custom:
exportOutputs:
enabled: false
include: ...
This could be used using stage option :
custom:
exportOutputsEnabled:
dev: true
exportOutputs:
enabled: ${self:custom.exportOutputsEnabled.${opt:stage}, false}
include: ...
Hi,
I would like to disable the plugin depending on a variable (usually the stage).
For example:
or
This could be used using stage option :