a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
11
fork

Configure Feed

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

fix: build target

+7
+7
vite.config.ts
··· 22 22 ignored: ["**/src-tauri/**"], 23 23 }, 24 24 }, 25 + build: { 26 + // es2018 for Tauri builds, baseline-widely-available for non-Tauri builds 27 + // (tauri supports Safari 13 and later, which ES2018 should be work, whereas I'd like to use the latest widely supported web technologies on non-Tauri builds) 28 + target: process.env.TAURI_ENV_PLATFORM 29 + ? "es2018" 30 + : "baseline-widely-available", 31 + }, 25 32 });