@plugable-io/js 0.0.10 → 0.0.11
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -142,7 +142,7 @@ var BucketClient = class {
|
|
|
142
142
|
__publicField(this, "config");
|
|
143
143
|
this.config = config;
|
|
144
144
|
this.client = import_axios.default.create({
|
|
145
|
-
baseURL: config.baseUrl || "
|
|
145
|
+
baseURL: config.baseUrl || "https://api.plugable.one/v1",
|
|
146
146
|
// Enable axios to respect cache headers
|
|
147
147
|
adapter: "fetch"
|
|
148
148
|
// Use fetch adapter which respects browser cache
|
package/dist/index.mjs
CHANGED
|
@@ -107,7 +107,7 @@ var BucketClient = class {
|
|
|
107
107
|
__publicField(this, "config");
|
|
108
108
|
this.config = config;
|
|
109
109
|
this.client = axios.create({
|
|
110
|
-
baseURL: config.baseUrl || "
|
|
110
|
+
baseURL: config.baseUrl || "https://api.plugable.one/v1",
|
|
111
111
|
// Enable axios to respect cache headers
|
|
112
112
|
adapter: "fetch"
|
|
113
113
|
// Use fetch adapter which respects browser cache
|