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