export async function getArticles() {
return await unstable_cache(
async () => {
return await db.select().from(articles).limit(10);
},
["articles"],
{ revalidate: 3600, tags: ["articles"] }
)();
}
export async function getArticles() {
return await unstable_cache(
async () => {
return await db.select().from(articles).limit(10);
},
["articles"],
{ revalidate: 3600, tags: ["articles"] }
)();
}