File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ const currentPageFile = computed(() => {
376
376
<main class =" mx-auto flex flex-col w-full" >
377
377
<div v-if =" tab === 'design'" class =" h-full relative max-h-full" >
378
378
<div v-if =" error" >
379
- <div v-if =" error.message.includes('missing the Nuxt OG Image payload')" >
379
+ <div v-if =" error.message.includes('missing the Nuxt OG Image payload') || error.message.includes('Got invalid response') " >
380
380
<!-- nicely tell the user they should use defineOgImage to get started -->
381
381
<div class =" flex flex-col items-center justify-center mx-auto max-w-135 h-85vh" >
382
382
<div class =" " >
@@ -387,7 +387,10 @@ const currentPageFile = computed(() => {
387
387
<p class =" text-lg opacity-80 my-3" >
388
388
Getting started with Nuxt OG Image is easy, simply add the <code >defineOgImageComponent()</code > within setup script setup of your <code class =" underline cursor-pointer" @click =" openCurrentPageFile" >{{ currentPageFile }}</code > file.
389
389
</p >
390
- <p class =" text-lg opacity-80" >
390
+ <div v-if =" globalDebug?.runtimeConfig?.hasNuxtContent" class =" text-lg" >
391
+ Using Nuxt Content? Follow the <a href =" https://nuxtseo.com/docs/integrations/content" target =" _blank" class =" underline" >Nuxt Content guide</a >.
392
+ </div >
393
+ <p v-else class =" text-lg opacity-80" >
391
394
<a href =" https://nuxtseo.com/og-image/getting-started/getting-familar-with-nuxt-og-image" target =" _blank" class =" underline" >
392
395
Learn more
393
396
</a >
Original file line number Diff line number Diff line change @@ -594,6 +594,7 @@ declare module '#og-image/unocss-config' {
594
594
hasNuxtIcon : hasNuxtModule ( 'nuxt-icon' ) || hasNuxtModule ( '@nuxt/icon' ) ,
595
595
colorPreference,
596
596
597
+ hasNuxtContent : hasNuxtModule ( '@nuxt/content' ) ,
597
598
strictNuxtContentPaths : config . strictNuxtContentPaths ,
598
599
// @ts -expect-error runtime type
599
600
isNuxtContentDocumentDriven : config . strictNuxtContentPaths || ! ! nuxt . options . content ?. documentDriven ,
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export interface OgImageRuntimeConfig {
36
36
hasNuxtIcon : boolean
37
37
colorPreference : 'light' | 'dark'
38
38
39
+ hasNuxtContent : boolean
39
40
isNuxtContentDocumentDriven : boolean
40
41
strictNuxtContentPaths : boolean
41
42
zeroRuntime : boolean
You can’t perform that action at this time.
0 commit comments