404/not found/veryfi-wasm.js is unavailable | Check if you have copied wasm from SDK folder to the directory from which your framework serves static files or root of the project if using vanilla js/node server |
No green box around a document on video | Check the console, if you see threads enabled: false that means that origin isolation headers were not set correctly |
crypto/fs/path are not available | SDK uses browser integrated API's, some frameworks/bundlers may try to use node versions of those API's, set fallbacks in your config file. Next.js example: js webpack: (config) => { config.resolve.fallback = { fs: false, path: false, crypto: false }; return config; } |