@stackable-labs/cli-app-extension 1.27.3 → 1.27.5
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,6 +113,20 @@ The dashboard displays a query param like:
|
|
|
113
113
|
|
|
114
114
|
Append this to your deployed host app URL to override the extension's `bundleUrl` in your browser session only. The `@stackable-labs/embeddables` SDK detects this param and loads from your tunnel instead of the production bundle. No DB changes, no shared state — each developer gets isolated overrides.
|
|
115
115
|
|
|
116
|
+
#### Multiple Extensions
|
|
117
|
+
|
|
118
|
+
To override multiple extensions at once, use either syntax:
|
|
119
|
+
|
|
120
|
+
**Comma-separated (single param):**
|
|
121
|
+
```
|
|
122
|
+
?_stackable_dev=ext-123:https://abc.trycloudflare.com,ext-456:https://def.trycloudflare.com
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**Repeated params:**
|
|
126
|
+
```
|
|
127
|
+
?_stackable_dev=ext-123:https://abc.trycloudflare.com&_stackable_dev=ext-456:https://def.trycloudflare.com
|
|
128
|
+
```
|
|
129
|
+
|
|
116
130
|
> **Note:** The `dev` command never updates the `bundleUrl` in the database. It is purely local.
|
|
117
131
|
|
|
118
132
|
## Development Workflow
|