[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: order BASE_SITE first to allow overriding other envs

FoxxMD (Apr 17, 2026, 6:30 PM UTC) bf765be1 e27c3019

+4 -3
+4 -3
docsite/docusaurus.config.ts
··· 8 8 let baseSite: string = 'https://foxxmd.github.io'; 9 9 10 10 const baseUrlEnvs = [ 11 + // To build with base URL via normal docker build with build-args/env 12 + // or if specified, to override the subsequent set ENVs 13 + process.env.BASE_SITE, 11 14 // To build with base URL set via netlify CI 12 15 // https://docs.netlify.com/build/configure-builds/environment-variables/#deploy-urls-and-metadata 13 16 process.env.DEPLOY_PRIME_URL, 14 17 // To build with base URL set via cloudflare pages CI 15 18 // https://developers.cloudflare.com/pages/configuration/build-configuration/#environment-variables 16 - process.env.CF_PAGES_URL, 17 - // To build with base URL via normal docker build with build-args/env 18 - process.env.BASE_SITE 19 + process.env.CF_PAGES_URL 19 20 ]; 20 21 21 22 for(const baseUrlVal of baseUrlEnvs) {