cache adjust
This commit is contained in:
parent
e4ad42cd7f
commit
db5a93226a
3 changed files with 4 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
||||||
const EleventyFetch = require('@11ty/eleventy-fetch')
|
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
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, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '0s',
|
duration: '3m',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
})
|
||||||
const music = await res
|
const music = await res
|
||||||
|
|
|
@ -3,7 +3,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const url = 'https://api.omg.lol/address/cory/statuses/'
|
const url = 'https://api.omg.lol/address/cory/statuses/'
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1d',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
})
|
||||||
const status = await res
|
const status = await res
|
||||||
|
|
|
@ -3,7 +3,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const url = 'https://utils.coryd.dev/api/webmentions'
|
const url = 'https://utils.coryd.dev/api/webmentions'
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1d',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
})
|
||||||
const webmentions = await res
|
const webmentions = await res
|
||||||
|
|
Reference in a new issue