Has anyone managed to get the web speech api working in a Tauri window? I'm getting a "Uncaught (in promise) DOMException: Failed to load because no supported source was found." when trying create a new SpeechSynthesisUtterance. Is there some allowlist config I need to enable to get this to work?
utterance = new SpeechSynthesisUtterance(text);
utterance.voice = synth.getVoices()[0];
utterance.rate = 0.8;
synth.speak(utterance);```