App/page.tsx async function getPosts() { const res = await fetch( "http://wp.blogcongnghe.local/wp-json/wp/v2/posts", { cache: "no-store" } ); if (!res.ok) { throw new Error("Failed to fetch posts"); } return res.json(); } export default async function Home() { const posts = await getPosts(); return ( <main style={{ padding: 40 }}> <h1>Blog Công Nghệ...
Đăng ngày Học với AI »