From ead516d3d82e9bf04531075813c5319596864939 Mon Sep 17 00:00:00 2001 From: expdsn <18111002318@163.com> Date: Thu, 27 Feb 2025 18:40:23 +0800 Subject: [PATCH] save --- app/(main)/article/[id]/page.tsx | 13 +++++++------ app/(main)/page.tsx | 4 ++-- app/_lib/data/article.ts | 4 ++-- app/_lib/data/link.ts | 31 +++++++++---------------------- app/globals.css | 3 +++ next.config.ts | 1 + 6 files changed, 24 insertions(+), 32 deletions(-) diff --git a/app/(main)/article/[id]/page.tsx b/app/(main)/article/[id]/page.tsx index 9fe9a0e..d51046c 100644 --- a/app/(main)/article/[id]/page.tsx +++ b/app/(main)/article/[id]/page.tsx @@ -4,18 +4,19 @@ import { faArrowRight } from "@fortawesome/free-solid-svg-icons" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" import Image from "next/image" import Link from "next/link" - +const PICTURE_PREFIX = 'https://newuitab.oss-cn-hangzhou.aliyuncs.com/ai_upload/downloads/' export default async function Page({ params }: { params: Promise<{ id: string }> }) { const id = (await params).id const article = await getArticle(id) + if (!article) return <>> - return