File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- title : The Open Source LLMOps Stack
2
+ title : Open Source LLMOps Stack
3
3
description : Introducing the Open Source LLMOps Stack based on LiteLLM and Langfuse which is well-integrated and can be easily self-hosted.
4
4
ogImage : /images/oss-llmops-stack-og.png
5
5
---
Original file line number Diff line number Diff line change @@ -13,12 +13,13 @@ export default {
13
13
"https://github.com/langfuse/oss-llmops-stack/tree/main/docs" ,
14
14
15
15
head ( ) {
16
- const { url } = useRouter ( ) ;
17
16
const { frontMatter } = useConfig ( ) ;
18
17
19
18
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" ;
22
23
const description = frontMatter . description ;
23
24
const ogImage = frontMatter . ogImage
24
25
? `${ HOSTNAME } ${ frontMatter . ogImage } `
@@ -30,15 +31,11 @@ export default {
30
31
< meta charSet = "UTF-8" />
31
32
< meta name = "viewport" content = "width=device-width, initial-scale=1" />
32
33
33
- { /* Canonical URL */ }
34
- { url && < link rel = "canonical" href = { url } /> }
35
-
36
34
< title > { title } </ title >
37
35
{ description && < meta name = "description" content = { description } /> }
38
36
< link rel = "icon" href = "/favicon.ico" />
39
37
40
38
{ /* Open Graph Tags */ }
41
- < meta property = "og:url" content = { url } />
42
39
< meta property = "og:title" content = { title } />
43
40
{ description && (
44
41
< meta property = "og:description" content = { description } />
You can’t perform that action at this time.
0 commit comments