blob: bcfe9f22d124505f2254bfb1f226835b0f873195 [file]
export async function getBlogDetail(locale, name) {
try {
const result = await fetch(`/pages/blog/${locale}/${name}.json`);
const json = await result.json();
return json;
} catch (e) {}
return {};
}