@builder.io/dev-tools 1.26.3 → 1.26.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -135,3 +135,19 @@ Devtools can also be started with a CLI command, which could be useful if there
135
135
  }
136
136
  }
137
137
  ```
138
+
139
+ ## Environment Variables
140
+
141
+ ### BUILDER_DISABLE_AMPLITUDE
142
+
143
+ Set `BUILDER_DISABLE_AMPLITUDE=true` to disable Amplitude analytics tracking when using the devtools CLI. This is useful for privacy-conscious environments or when you want to prevent analytics data collection.
144
+
145
+ ```bash
146
+ BUILDER_DISABLE_AMPLITUDE=true npx builder.io fusion dev
147
+ ```
148
+
149
+ Or add it to your `.env` file:
150
+
151
+ ```env
152
+ BUILDER_DISABLE_AMPLITUDE=true
153
+ ```