Skip to content

Commit

Permalink
fix: skip on prod
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Oct 23, 2024
1 parent 2d01b9e commit b903948
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/fabrique/patches/04-oblik.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
module.exports = async (manifests, _options, _context) => {
module.exports = async (manifests, _options, context) => {
if (context.config.environment === "prod") {
return manifests
}

const labelKey = "oblik.socialgouv.io/enabled"
const labelValue = "true"

Expand Down

0 comments on commit b903948

Please sign in to comment.