To access flags in the browser during Client-side Rendering (CSR), first create a new <AppHypertuneProvider> component that wraps the generated <HypertuneProvider> component:
If you try accessing a flag immediately after the app loads, you'll get your hardcoded fallback value if the SDK hasn't initialized from Hypertune Edge yet. This can result in layout shift or UI flickers if the flag value changes when the SDK initializes.
To avoid this, wrap your pages with the generated <HypertuneHydrator> component:
If you have a Content Security Policy, add the following URLs to the connect-src directive: https://edge.hypertune.com https://gcp.fasthorse.workers.dev
This lets the browser send analytics back to Hypertune so you can see how often different parts of your flag logic are evaluated, e.g. to see how many sessions fall into each targeting rule, as well as analytics for your events, A/B tests and machine learning loops.
To access flags in API Routes, use the getHypertune function:
To improve reliability, you can include a snapshot of your flag logic in the generated client at build time. The SDK will instantly initialize from the snapshot first before fetching the latest flag logic from Hypertune Edge.
Add the following environment variable to your .env file:
HYPERTUNE_INCLUDE_INIT_DATA=true
Then regenerate the client.
You can keep the snapshot fresh by setting up a webhook to regenerate the client on every Hypertune commit. In this case, you don't need to initialize from Hypertune Edge at all, eliminating network latency and bandwidth, improving both performance and efficiency.
6. (Optional) Use Vercel Edge Config
If your Next.js app is deployed on Vercel, you can use Edge Config to initialize the Hypertune SDK on the server with near-zero latency.
Connect your Hypertune project to a new or existing Edge Config store. Copy the displayed environment variables for later. They contain your Hypertune Token, Edge Config Connection String and Edge Config Item Key.
Go to your Vercel dashboard and select the project you want to use the Hypertune integration with. Go to Settings > Environment Variables and add the following:
NEXT_PUBLIC_HYPERTUNE_TOKEN, set to your Hypertune Token
EDGE_CONFIG, set to your Edge Config Connection String
EDGE_CONFIG_HYPERTUNE_ITEM_KEY, set to your Edge Config Item Key
2. Use the integration
Pull the environment variables to your .env.development.local file by running:
vercel env pull .env.development.local
Install the @vercel/edge-config package:
npminstall@vercel/edge-config
yarnadd@vercel/edge-config
pnpmadd@vercel/edge-config
Finally, update your getHypertune function to create an Edge Config client and pass it along with your Edge Config Item Key when creating the Hypertune source: