Skip to content

Commit cfed4df

Browse files
committed
chore: meta title
1 parent f49dae5 commit cfed4df

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

docs/pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: The Open Source LLMOps Stack
2+
title: Open Source LLMOps Stack
33
description: Introducing the Open Source LLMOps Stack based on LiteLLM and Langfuse which is well-integrated and can be easily self-hosted.
44
ogImage: /images/oss-llmops-stack-og.png
55
---

docs/theme.config.jsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ export default {
1313
"https://github.com/langfuse/oss-llmops-stack/tree/main/docs",
1414

1515
head() {
16-
const { url } = useRouter();
1716
const { frontMatter } = useConfig();
1817

1918
const title = frontMatter.title
20-
? `${frontMatter.title} - The OSS LLMOps Stack`
21-
: "The OSS LLMOps Stack";
19+
? frontMatter.title.includes("LLMOps Stack")
20+
? frontMatter.title
21+
: `${frontMatter.title} - OSS LLMOps Stack`
22+
: "Open Source LLMOps Stack";
2223
const description = frontMatter.description;
2324
const ogImage = frontMatter.ogImage
2425
? `${HOSTNAME}${frontMatter.ogImage}`
@@ -30,15 +31,11 @@ export default {
3031
<meta charSet="UTF-8" />
3132
<meta name="viewport" content="width=device-width, initial-scale=1" />
3233

33-
{/* Canonical URL */}
34-
{url && <link rel="canonical" href={url} />}
35-
3634
<title>{title}</title>
3735
{description && <meta name="description" content={description} />}
3836
<link rel="icon" href="/favicon.ico" />
3937

4038
{/* Open Graph Tags */}
41-
<meta property="og:url" content={url} />
4239
<meta property="og:title" content={title} />
4340
{description && (
4441
<meta property="og:description" content={description} />

0 commit comments

Comments
 (0)