@superblocksteam/library 2.0.41-next.24 → 2.0.41-next.26

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 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(`${importPath}?v=${Date.now()}`);
6017
+ await import(
6018
+ /* @vite-ignore */
6019
+ `${importPath}?v=${Date.now()}`
6020
+ );
6018
6021
  return;
6019
6022
  } catch (error) {
6020
6023
  const err = error;