A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

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

Try out 127.0.0.1 instead of localhost for native build

+1 -1
+1 -1
src-tauri/src/main.rs
··· 10 10 let port = 44999; 11 11 let mut context = tauri::generate_context!("tauri.conf.json"); 12 12 13 - let url = format!("http://localhost:{}", port).parse().unwrap(); 13 + let url = format!("http://127.0.0.1:{}", port).parse().unwrap(); 14 14 let window_url = WindowUrl::External(url); 15 15 16 16 context.config_mut().build.dist_dir = AppUrl::Url(window_url.clone());