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

refactor(frontend): Migrate tailwind config to v4

FoxxMD (Nov 4, 2025, 2:17 PM UTC) 538df6b6 819afcdb

+19 -25
+2 -1
.devcontainer/devcontainer.json
··· 26 26 "extensions": [ 27 27 "hbenl.vscode-mocha-test-adapter", 28 28 "dbaeumer.vscode-eslint", 29 - "unifiedjs.vscode-mdx" 29 + "unifiedjs.vscode-mdx", 30 + "bradlc.vscode-tailwindcss" 30 31 ] 31 32 } 32 33 },
+8 -1
.vscode/settings.json
··· 5 5 "search.exclude": { 6 6 "**/.docusaurus": true, 7 7 "**/build": true 8 - } 8 + }, 9 + "tailwindCSS.files.exclude": [ 10 + "docsite/**" 11 + ], 12 + "files.associations": { 13 + "*.css": "tailwindcss" 14 + }, 15 + "tailwindCSS.experimental.configFile": "src/client/index.css" 9 16 }
-2
src/client/App.css
··· 1 - @import "tailwindcss"; 2 - 3 1 .App { 4 2 text-align: center; 5 3 }
+9 -3
src/client/index.css
··· 1 - @tailwind base; 2 - @tailwind components; 3 - @tailwind utilities; 1 + @import 'tailwindcss'; 2 + 3 + @utility container { 4 + padding-inline: 1rem; 5 + } 6 + 7 + @theme { 8 + --breakpoint-md: 1024px; 9 + } 4 10 5 11 body { 6 12 margin: 0;
-18
tailwind.config.js
··· 1 - /** @type {import('tailwindcss').Config} */ 2 - module.exports = { 3 - content: [ 4 - "./src/**/*.{js,jsx,ts,tsx}", 5 - "index.html" 6 - ], 7 - theme: { 8 - container: { 9 - padding: '1rem', 10 - }, 11 - extend: { 12 - screens: { 13 - 'md': '1024px' 14 - } 15 - }, 16 - }, 17 - plugins: [], 18 - }