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.
Use Convertly image components in SolidJS for responsive image delivery and automatic optimization.
npm install @convertly-sh/image
import { ConvertlyCdnProvider, ConvertlyImage } from "@convertly-sh/image/solid"; export default function App() { return ( <ConvertlyCdnProvider namespace={import.meta.env.VITE_CONVERTLY_CDN_NAMESPACE}> <ConvertlyImage origin="products" src="hero.jpg" width={1200} height={800} sizes="(min-width: 768px) 50vw, 100vw" alt="Featured product" /> </ConvertlyCdnProvider> ); }
src