Data residency
Reflag on data residency
// Browser SDK + Node SDK
const reflagClient = new ReflagClient({
publishableKey: "{YOUR_PUBLISHABLE_KEY}",
apiBaseUrl: "https://front-eu.reflag.com",
...
});// React SDK
import { ReflagProvider } from "@reflag/react-sdk";
<ReflagProvider
publishableKey="{YOUR_PUBLISHABLE_KEY}"
company={{ id: "acme_inc" }}
user={{ id: "john doe" }}
apiBaseUrl="https://front-eu.reflag.com"
>
...
</ReflagProvider>Last updated
Was this helpful?