diff --git a/src/app/features/call/CallSounds.ts b/src/app/features/call/CallSounds.ts index 0d094c9..a9df927 100644 --- a/src/app/features/call/CallSounds.ts +++ b/src/app/features/call/CallSounds.ts @@ -1,11 +1,4 @@ /* eslint-disable no-console */ -import MicMuteUrl from '../../../../public/sound/Mic_Mute.ogg'; -import MicUnmutedUrl from '../../../../public/sound/Mic_Unmuted.ogg'; -import SpeakersDeafenUrl from '../../../../public/sound/Speakers_Deafen.ogg'; -import SpeakersUndeafenUrl from '../../../../public/sound/Speakers_Undeafen.ogg'; -import CallJoinedUrl from '../../../../public/sound/Call_Joined.ogg'; -import CallDepartUrl from '../../../../public/sound/Call_Depart.ogg'; -import CallDialingUrl from '../../../../public/sound/Call_Dialing.ogg'; /** * Sound types that can be played during a call @@ -21,16 +14,16 @@ export enum CallSoundType { } /** - * Maps sound types to their resolved Vite asset URLs + * Maps sound types to their URL paths (served from public folder) */ const SOUND_SOURCES: Record = { - [CallSoundType.MicMute]: MicMuteUrl, - [CallSoundType.MicUnmute]: MicUnmutedUrl, - [CallSoundType.Deafen]: SpeakersDeafenUrl, - [CallSoundType.Undeafen]: SpeakersUndeafenUrl, - [CallSoundType.CallJoined]: CallJoinedUrl, - [CallSoundType.CallDepart]: CallDepartUrl, - [CallSoundType.CallDialing]: CallDialingUrl, + [CallSoundType.MicMute]: './sound/Mic_Mute.ogg', + [CallSoundType.MicUnmute]: './sound/Mic_Unmuted.ogg', + [CallSoundType.Deafen]: './sound/Speakers_Deafen.ogg', + [CallSoundType.Undeafen]: './sound/Speakers_Undeafen.ogg', + [CallSoundType.CallJoined]: './sound/Call_Joined.ogg', + [CallSoundType.CallDepart]: './sound/Call_Depart.ogg', + [CallSoundType.CallDialing]: './sound/Call_Dialing.ogg', }; /**