[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #509 from FoxxMD/netlifyPreview

Netlify preview

authored by

Matt Foxx and committed by
GitHub
(Mar 30, 2026, 11:25 AM EDT) 034cfe7a 7a8cf7c0

+16
+16
docsite/docusaurus.config.ts
··· 252 252 config.scripts.push(script) 253 253 } 254 254 255 + if(process.env.NETLIFY === 'true') { 256 + // @ts-ignore 257 + config.themeConfig.footer.links.push({ 258 + title: 'Docs Powered By', 259 + items: [ 260 + { 261 + html: ` 262 + <a href="https://www.netlify.com"> 263 + <img src="https://www.netlify.com/assets/badges/netlify-badge-color-accent.svg" alt="Deploys by Netlify" /> 264 + </a> 265 + ` 266 + } 267 + ] 268 + }); 269 + } 270 + 255 271 export default config;