WXWebAssembly.instantiate(path, imports) 同样的path和imports 放在小程序的主包运行正常但是放在小程序的分包里运行报错 wasm streaming compile failed: CompileError: WebAssembly.Module doesn't parse at byte 0: expected a module of at least 8 bytes 所以大概率小程序读取分包里的path时可能路径依赖不一样找不到 所以byte是0 对于分包里的路径怎么修改比如path = "static/wasm/elsInfer/xxx.wasm.br"怎么修改
