💎
Headless Docs
Version 0.2.0
Version 0.2.0
  • Overview
  • Change Log
  • Next.js Steps
    • Requirements
    • Determine Page Methods
      • Route Hashing Method
      • Cookies Method
    • Install Middleware
    • Add Intelligems Provider
    • Read User Context
      • Route Hashing Method
      • Cookies Method
    • Track Page Views
    • Update Prices on Page
    • Update ATC Events
    • Preview Your Site
  • Gatsby Steps
    • Requirements
    • Add Intelligems Provider
    • Track Page Views
    • Update Prices on Page
    • Update ATC Events
    • Preview Your Site
  • Pack Digital Steps
    • Requirements
    • Add Intelligems Provider
    • Track Page Views
    • Update Prices on Page
    • Update ATC Events
    • Preview Your Site
  • Examples
    • Content Testing
  • Reference
    • Middleware Objects
      • IgMiddlewareConfig
      • IgMiddlewareHandler
    • Providers
      • Next.js
      • Gatsby
    • Components
      • Price Components
    • Hooks
      • Price Hooks
      • Track Hooks
      • Experiment Hooks
      • Test Group Hooks
      • Cart & Checkout Hooks
Powered by GitBook
On this page
  • Client-side Rendering is currently available.
  • Required SSR Tag:
  • Required Environment Variables
  1. Gatsby Steps

Requirements

PreviousPreview Your SiteNextAdd Intelligems Provider

Last updated 1 year ago

Client-side Rendering is currently available.

Required SSR Tag:

This tag is extremely important as it allows Intelligems to track package versions to ensure compatibility with new features.

const intelligems = require("@intelligems/headless/gatsby");

exports.onRenderBody = ({ setHtmlAttributes, setBodyAttributes }) => {
  setBodyAttributes(intelligems.IntelligemsVersionAttribute);
};

Required Environment Variables

Intelligems Organization Id

Visit . Your organization ID is located under the settings page.

GATSBY_INTELLIGEMS_ORG_ID=<Intelligems-Organization-Id>
GATSBY_SHOPIFY_STORE_DOMAIN=<your-store-name>.myshopify.com
GATSBY_STOREFRONT_ACCESS_TOKEN=<Storefront-API-Token>
app.intelligems.io