Settled messages no longer rebuild on every token, Inter is actually requested, and admin routes drop the 33 KB chat stylesheet. Root force-dynamic is gone so public shells can prerender without changing the no-store Cache-Control contract. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
401 B
TypeScript
16 lines
401 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
import { PersonalReportCenter } from "@/components/personal-report/personal-report-center";
|
|
import "../site-styles";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "个人报告中心 · Jyotisha",
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function ReportsPage() {
|
|
return <PersonalReportCenter />;
|
|
}
|