hypnagaga_old/src/_data/github.js
2024-06-03 11:15:04 +02:00

14 lines
272 B
JavaScript

import EleventyFetch from '@11ty/eleventy-fetch';
export default async function () {
let url = 'https://api.github.com/users/madrilene/repos';
// returning promise
let data = await EleventyFetch(url, {
duration: '1d',
type: 'json'
});
return data;
}