diff --git a/src/app/article/page.tsx b/src/app/article/page.tsx index 6e6e0f9..d774061 100644 --- a/src/app/article/page.tsx +++ b/src/app/article/page.tsx @@ -9,8 +9,8 @@ import Image from 'next/image'; // 获取文章信息 async function getArticleInfo(journalId: string) { - // const res = await fetch(`http://api.indie.cn:9012/luoo-music/article/${journalId}`); TODO: - const res = await fetch(`http://39.103.180.196:9012/luoo-music/article/${journalId}`); + const res = await fetch(`http://api.indie.cn:9012/luoo-music/article/${journalId}`); + // const res = await fetch(`http://39.103.180.196:9012/luoo-music/article/${journalId}`); return res.json(); }