We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e31ff1 commit 8a5657eCopy full SHA for 8a5657e
packages/core/util/GoogleAnalytics.ts
@@ -23,6 +23,9 @@ class GoogleAnalytics {
23
// These can be overridden via environment variables:
24
// - IGNITEUI_CLI_GA4_MEASUREMENT_ID
25
// - IGNITEUI_CLI_GA4_API_SECRET
26
+ //
27
+ // NOTE: If environment variables are not set and placeholder values remain, analytics will silently fail.
28
+ // This matches the current behavior where invalid credentials result in silent failures.
29
protected static measurementID = process.env.IGNITEUI_CLI_GA4_MEASUREMENT_ID || "G-XXXXXXXXXX"; // TODO: Replace default with actual GA4 Measurement ID
30
protected static apiSecret = process.env.IGNITEUI_CLI_GA4_API_SECRET || "XXXXXXXXXXXXXXXXXXXXXXXX"; // TODO: Replace default with actual GA4 API Secret
31
0 commit comments