14 lines
409 B
JavaScript
14 lines
409 B
JavaScript
import EleventyFetch from '@11ty/eleventy-fetch'
|
|
|
|
export default async function () {
|
|
const KEY_CORYD = process.env.API_KEY_WEBMENTIONS_CORYD_DEV
|
|
const url = `https://webmention.io/api/mentions.jf2?token=${KEY_CORYD}&per-page=1000`
|
|
const res = EleventyFetch(url, {
|
|
duration: '1h',
|
|
type: 'json',
|
|
}).catch()
|
|
const webmentions = await res
|
|
return {
|
|
mentions: webmentions['children'],
|
|
}
|
|
}
|