We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe949a5 commit 71b9b8aCopy full SHA for 71b9b8a
docs/pages/api/og.tsx
@@ -117,7 +117,8 @@ export default async function OG(req: Request) {
117
style={{
118
fontSize: 82,
119
lineHeight: 1.1,
120
- letterSpacing: -4
+ letterSpacing: -4,
121
+ marginRight: 12
122
}}
123
>
124
{title}
docs/public/og-image.png
-33.8 KB
docs/theme.config.tsx
@@ -103,10 +103,9 @@ export default {
103
const pageConfig = useConfig();
104
const {route} = useRouter();
105
const isDefault = route === '/' || !pageConfig.title;
106
-
107
- const image = isDefault
108
- ? '/og-image.png'
109
- : `/api/og?title=${pageConfig.title}`;
+ const image = `/api/og?title=${
+ isDefault ? config.description : pageConfig.title
+ }`;
110
111
const description =
112
pageConfig.frontMatter.description ||
0 commit comments