state.js 355 B

1234567891011
  1. // Deep copy to not mutate it with the store (default state is needed when reloading after a refresh)
  2. export default () => JSON.parse(JSON.stringify({
  3. uuid: null,
  4. userId: 'default', // default param
  5. experimentId: 'default', // default param
  6. gdprConsent: false,
  7. hostConfig: null,
  8. scenesList: null,
  9. progression: {},
  10. customLinkData: null
  11. }))