feat: expose certain classes under the monochrome object when in dev mode

This commit is contained in:
Daniel 2026-03-21 17:41:19 -05:00
parent c768f8d675
commit aa1c6944d2

View file

@ -383,6 +383,14 @@ async function uploadCoverImage(file) {
document.addEventListener('DOMContentLoaded', async () => {
await modernSettings.waitPending();
if (import.meta.env.DEV) {
window.monochrome = {
MusicAPI,
LyricsManager,
Player,
};
}
// Initialize analytics
initAnalytics();