Skip to main content

Troubleshooting

IssueSolution
404/not found/veryfi-wasm.js is unavailableCheck 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 videoCheck the console, if you see threads enabled: false that means that origin isolation headers were not set correctly
crypto/fs/path are not availableSDK 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; }