- 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
8 lines
278 B
Text
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
|