Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Some releavant tips and gotchas when building with Next.js and Layercode
'use client'; import dynamic from 'next/dynamic'; // Dynamically import the VoiceAgent component with SSR disabled const VoiceAgent = dynamic(() => import('./ui/VoiceAgent'), { ssr: false }); export default function Home() { return <VoiceAgent />; }
Was this page helpful?