@superblocksteam/library 2.0.41-next.23 → 2.0.41-next.25
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 +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6014,7 +6014,10 @@ async function connectSocket(serverUrl, { peerId, userId, applicationId, onClose
|
|
|
6014
6014
|
clientImport: [async (payload) => {
|
|
6015
6015
|
const { importPath } = payload;
|
|
6016
6016
|
try {
|
|
6017
|
-
await import(
|
|
6017
|
+
await import(
|
|
6018
|
+
/* @vite-ignore */
|
|
6019
|
+
`${importPath}?v=${Date.now()}`
|
|
6020
|
+
);
|
|
6018
6021
|
return;
|
|
6019
6022
|
} catch (error) {
|
|
6020
6023
|
const err = error;
|