Stacks
Integrations per stack.
Per-platform setup: WordPress, plain HTML, Shopify, Next.js, Astro, Remix, SvelteKit, Webflow, Framer.
At a glance: the install for every supported stack. Each row links to a full recipe with the exact code.
| Platform | Tags to add | Notes |
|---|---|---|
| WordPress | None. The plugin handles everything. | Install the plugin, paste your license key. See WordPress. |
| Plain HTML / static | One <script> tag. | Drop into <head> or before </body>. See Plain HTML. |
| Shopify | One <script> tag in theme.liquid. | See Shopify. |
| Next.js | <link rel="stylesheet"> + <script> in root layout. | Two-tag SSR pattern. See Next.js. |
| Astro | <link> + <script> in main layout. | See Astro. |
| Remix | <link> + <script> in root component. | See Remix. |
| SvelteKit | <link> + <script> in app.html. | See SvelteKit. |
| Webflow / Framer | One <script> tag in custom code. | See Webflow and Framer. |
Streaming SSR frameworks (Next.js, Astro, Remix, SvelteKit) use the two-tag pattern: a stylesheet link prevents the flash of unstyled content, the script tag loads the runtime. More on the mechanic in the Performance article.