chore(medusa): Enable analytics ff by default (#2532)

This commit is contained in:
Oliver Windall Juhl
2022-11-04 11:33:21 +01:00
committed by GitHub
parent 55dd5650c0
commit 222423625d
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---
Enable analytics feature flag by default
@@ -2,7 +2,7 @@ import { FlagSettings } from "../../types/feature-flags"
const AnalyticsFeatureFlag: FlagSettings = { const AnalyticsFeatureFlag: FlagSettings = {
key: "analytics", key: "analytics",
default_val: false, default_val: true,
env_key: "MEDUSA_FF_ANALYTICS", env_key: "MEDUSA_FF_ANALYTICS",
description: description:
"Enable Medusa to collect data on usage, errors and performance for the purpose of improving the product", "Enable Medusa to collect data on usage, errors and performance for the purpose of improving the product",