@inspirer-dev/crm-dashboard 1.0.54 → 1.0.55
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.
|
@@ -47,7 +47,7 @@ const getBackendUrl = async () => {
|
|
|
47
47
|
return cachedUrl;
|
|
48
48
|
}
|
|
49
49
|
try {
|
|
50
|
-
const res = await fetch("/crm-dashboard/config");
|
|
50
|
+
const res = await fetch("/api/crm-dashboard/config");
|
|
51
51
|
if (res.ok) {
|
|
52
52
|
const data = await res.json();
|
|
53
53
|
cachedUrl = data.apiUrl || "";
|
|
@@ -43,7 +43,7 @@ const getBackendUrl = async () => {
|
|
|
43
43
|
return cachedUrl;
|
|
44
44
|
}
|
|
45
45
|
try {
|
|
46
|
-
const res = await fetch("/crm-dashboard/config");
|
|
46
|
+
const res = await fetch("/api/crm-dashboard/config");
|
|
47
47
|
if (res.ok) {
|
|
48
48
|
const data = await res.json();
|
|
49
49
|
cachedUrl = data.apiUrl || "";
|
package/dist/admin/index.js
CHANGED
|
@@ -149,7 +149,7 @@ const index = {
|
|
|
149
149
|
Component: async () => {
|
|
150
150
|
const component = await Promise.resolve().then(() => require(
|
|
151
151
|
/* webpackChunkName: "crm-dashboard-page" */
|
|
152
|
-
"../_chunks/index-
|
|
152
|
+
"../_chunks/index-CCjUeHQa.js"
|
|
153
153
|
));
|
|
154
154
|
return component;
|
|
155
155
|
},
|
package/dist/admin/index.mjs
CHANGED