Files
ember-market-frontend/app/_document.tsx
g 96638f968f Update notification sound to notification.mp3
Replaces all references to hohoho.mp3 with notification.mp3 for notification sounds across the app. Moves AudioPreloader to layout component and removes duplicate usage. Adds a guard in BroadcastDialog to prevent duplicate sends.
2025-12-28 19:21:02 +00:00

16 lines
362 B
TypeScript

import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head>
<meta charSet="utf-8" />
<link rel="preload" href="/notification.mp3" as="audio" type="audio/mpeg" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}