cache adjust

This commit is contained in:
Cory Dransfeldt 2023-03-15 04:52:47 -07:00
parent e4ad42cd7f
commit db5a93226a
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -1,9 +1,9 @@
const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const url = 'https://utils.coryd.dev/api/music?limit=1&period=7day'
const url = 'https://utils.coryd.dev/api/music?limit=1'
const res = EleventyFetch(url, {
duration: '0s',
duration: '3m',
type: 'json',
})
const music = await res

View file

@ -3,7 +3,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const url = 'https://api.omg.lol/address/cory/statuses/'
const res = EleventyFetch(url, {
duration: '1d',
duration: '1h',
type: 'json',
})
const status = await res

View file

@ -3,7 +3,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const url = 'https://utils.coryd.dev/api/webmentions'
const res = EleventyFetch(url, {
duration: '1d',
duration: '1h',
type: 'json',
})
const webmentions = await res