メインコンテンツまでスキップ
このページは自動翻訳されており、誤りが含まれる場合があります。 英語の原文を表示

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'],
},
// ...
});