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.

PlatformTags to addNotes
WordPressNone. The plugin handles everything.Install the plugin, paste your license key. See WordPress.
Plain HTML / staticOne <script> tag.Drop into <head> or before </body>. See Plain HTML.
ShopifyOne <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 / FramerOne <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.

  1. 01

    WordPress

  2. 02

    Plain HTML and static sites

  3. 03

    Shopify

  4. 04

    Next.js

  5. 05

    Astro

  6. 06

    Remix

  7. 07

    SvelteKit

  8. 08

    Webflow and Framer