Files
edgeKey/pages/+title.ts
2026-04-21 11:56:35 +08:00

6 lines
277 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { PageContextServer } from "vike/types";
export default function title(pageContext: any) {
// 优先使用页面级别的 title如果某个页面配置了 title否则使用站点配置的名称
return pageContext.title || pageContext.site?.siteName;
}