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.
Embed Cuprice in a Next.js app
Script
import Script from "next/script"; export default function PricingPage() { return ( <section className="py-20 px-6"> <div data-cuprice-id="YOUR_SHARE_ID"></div> <Script src="https://app.cuprice.io/embed.js" strategy="lazyOnload" /> </section> ); }
.env.local
CUPRICE_SHARE_ID=nTZ7axXQHU NEXT_PUBLIC_CUPRICE_BASE=https://cuprice.io
import Script from "next/script"; export default function PricingPage() { return ( <section> <div data-cuprice-id={process.env.CUPRICE_SHARE_ID}></div> <Script src={`${process.env.NEXT_PUBLIC_CUPRICE_BASE}/embed.js`} strategy="lazyOnload" /> </section> ); }
strategy="lazyOnload"