Skip to content

Commit

Permalink
docs: Prevent duplicate description meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
matlin committed Jun 14, 2024
1 parent b73c783 commit 634069d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/docs/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ export default {
const { frontMatter } = useConfig();
return (
<>
<meta
<meta property="og:url" content={URL + asPath} />
{/* <meta
name="description"
content={frontMatter.description ?? DESCRIPTION}
/>
<meta property="og:url" content={URL + asPath} />
<meta
property="og:description"
content={frontMatter.description ?? DESCRIPTION}
/>
/> */}
<meta property="og:image" content={URL + '/opengraph-image.png'} />
<meta property="og:image:alt" content="Triplit Logo" />
<meta property="og:image:type" content="image/png" />
Expand Down

0 comments on commit 634069d

Please sign in to comment.