From 480d3468cefba23ab2fdb621e1ed4d60f3ee486f Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Mar 2023 18:03:26 -0700 Subject: [PATCH] allow some caching --- 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 dffe4ac8..c849391b 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: '0s', + duration: '3m', type: 'json', }) const music = await res