src/api/getEventDetail.js (8 lines of code) (raw):

export async function getEventDetail(locale, name) { try { const result = await fetch(`/pages/events/${locale}/${name}.json`); const json = await result.json(); return json; } catch (e) {} return {}; }