veza/apps/web/.env.storybook
senke e64968e761 feat(player): integrate HLS streaming with ABR quality switching
- Connect useHLSPlayer hook to useAudioPlayerLifecycle for automatic
  HLS activation when feature flag and browser support are available
- Wire quality selector to HLS level switching via hlsPlayer.setQuality
- Expose isHLSActive and hlsLevels from lifecycle hook for UI components
- Create MSW handlers for HLS endpoints (info, status, master/quality
  playlists) for Storybook and testing
- Enable VITE_FEATURE_HLS_STREAMING in .env.storybook
2026-02-22 21:24:40 +01:00

8 lines
278 B
Text

# Storybook Environment Configuration
# Used when running "npm run storybook" or "npm run build-storybook"
# Point API to a relative path so MSW can intercept it easily (same-origin)
VITE_API_URL=/api/v1
VITE_IS_STORYBOOK=true
VITE_USE_MSW=true
VITE_FEATURE_HLS_STREAMING=true