Hi folks. Is it possible to set up a feature flag ...
# ask-questions
b
Hi folks. Is it possible to set up a feature flag and experiment entirely on the client side (once the GB JS is loaded), by supplying the features and experiments attributes manually, so that variation assignment is then handled without needing to load anything from GB? An extension of this in the docs:
Copy code
const gb = new GrowthBook({
  features: {
    "feature-1": {...},
    "feature-2": {...},
    "another-feature": {...},
  }
})
Is so, is there documentation for how to do an extend this custom integration?
f
yes, that is possible
we call that 'inline experiments' you can find more info on our docs
b
Thanks @fresh-football-47124 I thought that was possible, that is what I was looking for