Troubleshooting
Connection Error
If the console error starts with: Uncaught (in promise) CompileError: WebAssembly.instantiate()
, excluding the library to optimize can help.
For example, if you're using Vite, you may need to add the following to your vite.config.js file:
export default defineConfig({
// ...
optimizeDeps: {
exclude: ['tact-js'],
},
// ...
});