From 56836c06a12be869af0808d93081fc872d40e7c1 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Mar 2023 17:58:02 -0700 Subject: [PATCH] tweak fetch timing --- src/_data/nowplaying.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/nowplaying.js b/src/_data/nowplaying.js index c849391b..dffe4ac8 100644 --- a/src/_data/nowplaying.js +++ b/src/_data/nowplaying.js @@ -3,7 +3,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch') module.exports = async function () { const url = 'https://utils.coryd.dev/api/music?limit=1&period=7day' const res = EleventyFetch(url, { - duration: '3m', + duration: '0s', type: 'json', }) const music = await res