We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca366bf commit 2490744Copy full SHA for 2490744
1 file changed
site/src/pages/og/[...path].png.ts
@@ -15,7 +15,8 @@ export const getStaticPaths = (async () => {
15
export const GET: APIRoute = async ({ props }) => {
16
const { entry } = props as any;
17
const title = entry.data.title || ' ';
18
- const description = 'Consistent dependency versions in large JavaScript Monorepos';
+ const defaultDescription = 'Consistent dependency versions in large JavaScript Monorepos';
19
+ const description = entry.data.description || defaultDescription;
20
21
return await satoriAstroOG({
22
template: html`
0 commit comments