This repository shows how to manually implement feature flags on Vercel for pages that are ISR'd using SvelteKit.
Deployed example: https://flags-precompute-manual-sveltekit.vercel.app/
Prerequisites:
This example uses Vercel flags to en/decrypt feature flags. Make sure to have FLAGS_SECRET
setup in your Vercel project and pull it to an .env
file so you can work with it locally aswell. (Alternatively if that's none of your concern, you can remove that logic and no longer need that env variable).
Flow:
middleware.ts
. A flag cookie is looked up to see what value it is. For first time visitors the value is computed randomly./
goes either to /home-a
or /home-b
)/home-a
or /home-b
middleware.ts
, so ISR/SvelteKit itself never sees it, which is important), so revisiting user gets the same flag valuereroute
to request a server endpoint we created (that is not prerendered or ISR'd) which determines the route for us (using similar logic to that in middleware.ts
)