blob: 35f1d79e87ccdd245232208a1dd8cbcc69c8a625 [file]
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 {};
}