Cette page a été traduite automatiquement et peut contenir des erreurs. Voir l’original en anglais
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'],
},
// ...
});