Última actividad 1 week ago

Revisión 4f4f26e1ed0e55427fd6f7a32734723520bbaacc

README.md Sin formato

Fetching JSON Data in Astro

Fetch

To fetch data in Astro, you need to request from the JSON url:

const RawData = new Request('https://example.org/data.json')

Then, format it to JSON, if not already:

const JsonData = RawData.json()
1