AstroとWordpressとの接続
Q&A
Closed
解決したいこと
Unexpected token '<', "<!DOCTYPE "... is not valid JSON
このエラーの原因がわからない
---
const res = await fetch(`${import.meta.env.PUBLIC_API_URL}posts`);
const posts = await res.json();
---
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ブログ一覧</title>
</head>
<body>
<dl>
{posts.map((post)=>
<dt>{posts.date}</dt>
<dd>{posts.title.rendered}</dd>
)}
</dl>
</body>
</html>