[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.

docs: Add BASE_SITE env

FoxxMD (Apr 7, 2026, 12:27 PM UTC) d85628b4 db0e74ae

+9 -3
+9 -3
docsite/docusaurus.config.ts
··· 3 3 import * as themes from 'prism-react-renderer'; 4 4 //import sidebars from './sidebars'; 5 5 6 + let baseSite = 'https://foxxmd.github.io'; 7 + const baseSiteEnv = process.env.BASE_SITE; 8 + if(baseSite !== undefined && baseSite !== null && baseSite.trim() !== '') { 9 + baseSite = baseSiteEnv; 10 + } 11 + 6 12 const config: Config = { 7 13 future: { 8 14 v4: { ··· 19 25 favicon: 'img/favicon.ico', 20 26 21 27 // Set the production url of your site here 22 - url: 'https://foxxmd.github.io', 28 + url: baseSite, 23 29 // Set the /<baseUrl>/ pathname under which your site is served 24 30 // For GitHub pages deployment, it is often '/<projectName>/' 25 31 baseUrl: process.env.DOCS_BASE !== undefined && process.env.DOCS_BASE !== '' ? process.env.DOCS_BASE : '/docs', ··· 158 164 position: 'right', 159 165 }, 160 166 { 161 - href: 'https://foxxmd.github.io/multi-scrobbler/', 167 + href: 'https://multi-scrobbler.app', 162 168 label: 'Website', 163 169 position: 'right', 164 170 }, ··· 197 203 }, 198 204 { 199 205 label: 'Website', 200 - href: 'https://foxxmd.github.io/multi-scrobbler/', 206 + href: 'https://multi-scrobbler.app', 201 207 }, 202 208 ], 203 209 },