From 0487772fb08348402df781d31bb69797612fc53e Mon Sep 17 00:00:00 2001 From: Rhymlore Date: Thu, 11 Jan 2024 16:44:52 -0600 Subject: [PATCH] Removed Nextra suffix from titles --- theme.config.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/theme.config.tsx b/theme.config.tsx index 0e8cd7a..8e6cf91 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -11,6 +11,10 @@ const config: DocsThemeConfig = { ), docsRepositoryBase: "https://github.com/PelicanPlatform/pelican/tree/main/docs", + useNextSeoProps() { + return { + titleTemplate: '%s – Pelican Documentation', + }}, head: ( <> @@ -27,6 +31,7 @@ const config: DocsThemeConfig = { footer: { text: 'Pelican Documentation', }, + } export default config