My personal site hosted @ https://indexx.dev

feat: update lastfm api url

Changed files
+1 -1
src
components
src/components/NowPlaying.jsx

This is a binary file and will not be displayed.

+1 -1
src/components/islands/NowPlaying.jsx
···
const fetchNowPlaying = async () => {
try {
const res = await fetch(
-
"https://indexx.dev/api/misc/lastfm",
);
if (!res.ok) throw new Error(`HTTP ${res.status}`);
···
const fetchNowPlaying = async () => {
try {
const res = await fetch(
+
"https://workers.indexx.dev/misc/lastfm",
);
if (!res.ok) throw new Error(`HTTP ${res.status}`);