I am experiencing issues with JavaScript and CSS chunk loading when updating the Zoom Meeting SDK in my project. The current SDK 3.1.2 version works fine, but these issues occur when updating to newer versions (e.g., 3.6.0, 3.7.0, 3.8.0, and 3.11.0). Below are the errors encountered:
CSS Chunk Loading Error:
Uncaught (in promise) Error: Loading CSS chunk 8355 failed.
(https://source.zoom.us/3.7.0/ui/8355.zoom-meetingsdk.css)
JavaScript Chunk Loading Error:
Uncaught (in promise) ChunkLoadError: Loading chunk 986 failed.
(missing: https://source.zoom.us/3.8.0/ui/zoomus-websdk-zoommtgMain.umd.min.js)
Below is the JS code before the init function:
import { ZoomMtg } from “@zoom/meetingsdk”;
ZoomMtg.setZoomJSLib(‘https://source.zoom.us/3.7.0/lib’, ‘/av’);
ZoomMtg.preLoadWasm();
ZoomMtg.prepareWebSDK();
Please confirm if these issues are related to specific SDK versions and guide on resolving the errors.