Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

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

webui: fix vite.config.ts type issue

+4 -2
+4 -2
webui/rockbox/vite.config.ts
··· 6 6 import pkg from "./package.json"; 7 7 8 8 // https://vitejs.dev/config/ 9 - export default defineConfig(({ command }) => { 9 + // eslint-disable-next-line @typescript-eslint/no-explicit-any 10 + export default defineConfig((({ command }: any) => { 10 11 rmSync("dist-electron", { recursive: true, force: true }); 11 12 12 13 const isServe = command === "serve"; ··· 81 82 })(), 82 83 clearScreen: false, 83 84 }; 84 - }); 85 + // eslint-disable-next-line @typescript-eslint/no-explicit-any 86 + }) as any);