diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-04 01:00:29 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-04 01:00:29 +0300 |
| commit | 1686b0a7cafc8b58929c10f889783286322892df (patch) | |
| tree | 157b6d45697dd2eb2ad8f10caab207a6bef0de93 /src/pages/og-image | |
| parent | 3f0373ee3c64d80af91ebcbcca37ebdc1ae3de8a (diff) | |
Migrate old content
Diffstat (limited to 'src/pages/og-image')
| -rw-r--r-- | src/pages/og-image/[...slug].png.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/og-image/[...slug].png.ts b/src/pages/og-image/[...slug].png.ts index f58316c..3279380 100644 --- a/src/pages/og-image/[...slug].png.ts +++ b/src/pages/og-image/[...slug].png.ts @@ -77,7 +77,7 @@ export async function GET(context: APIContext) { } export async function getStaticPaths() { - const posts = await getAllPosts(); + const posts = await getAllPosts(true); // Include archived posts for OG image generation return posts .filter(({ data }) => !data.ogImage) .map((post) => ({ |
