@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260324171508 → 0.8.1-dev.20260324172014
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
|
@@ -3073,7 +3073,7 @@ var AssetUtility = class {
|
|
|
3073
3073
|
if (!url) return void 0;
|
|
3074
3074
|
if (url.startsWith("http")) return url;
|
|
3075
3075
|
if (!apiBaseUrl) return url;
|
|
3076
|
-
return `${apiBaseUrl}
|
|
3076
|
+
return `${apiBaseUrl}/${url}`;
|
|
3077
3077
|
}
|
|
3078
3078
|
};
|
|
3079
3079
|
var AssetUtility_default = AssetUtility;
|
package/dist/index.mjs
CHANGED
|
@@ -3038,7 +3038,7 @@ var AssetUtility = class {
|
|
|
3038
3038
|
if (!url) return void 0;
|
|
3039
3039
|
if (url.startsWith("http")) return url;
|
|
3040
3040
|
if (!apiBaseUrl) return url;
|
|
3041
|
-
return `${apiBaseUrl}
|
|
3041
|
+
return `${apiBaseUrl}/${url}`;
|
|
3042
3042
|
}
|
|
3043
3043
|
};
|
|
3044
3044
|
var AssetUtility_default = AssetUtility;
|
package/package.json
CHANGED