/** * Funkwhale Activity Data — build-time stub * * Data is now fetched client-side via Alpine.js (js/listening.js). * This stub returns the minimal shape needed so Nunjucks templates * (slashes.njk, widget guard) continue to render the listening sections, * while the actual data is populated by the browser after page load. */ export default function () { return { source: "indiekit", nowPlaying: null, listenings: [], favorites: [], stats: null, instanceUrl: process.env.FUNKWHALE_INSTANCE || "", }; }