// TTS tab is a structural placeholder until a synthesis backend is wired in. // This just confirms the /tts router is reachable; the UI itself is a static // "coming soon" card (see index.html). async function loadTtsConfig() { try { const r = await fetch('/tts/config'); const cfg = await r.json(); console.log('[tts] config', cfg); } catch (e) { console.warn('[tts] config fetch failed', e); } } loadTtsConfig();