10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
import { FeatureFlagTypes } from "@medusajs/types"
|
|
|
|
export const AnalyticsFeatureFlag: FeatureFlagTypes.FlagSettings = {
|
|
key: "analytics",
|
|
default_val: true,
|
|
env_key: "MEDUSA_FF_ANALYTICS",
|
|
description:
|
|
"Enable Medusa to collect data on usage, errors and performance for the purpose of improving the product",
|
|
}
|