We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5f92e commit 976c43fCopy full SHA for 976c43f
src/systems/armarker/camera-capture/ccwebarviewer.js
@@ -49,6 +49,13 @@ export default class WebARViewerCameraCapture {
49
50
// WebXRViewer/WebARViewer deliver camera frames to 'processCV'
51
window.processCV = this.processCV.bind(this);
52
+
53
+ // For no obvious reason, parcel is optimizing away the import of Base64Binary, so we force include here...
54
+ try {
55
+ console.debug(Base64Binary, Base64Binary.decodeArrayBuffer());
56
+ } catch {
57
+ //
58
+ }
59
}
60
61
/**
0 commit comments