Skip to content

Commit a80aa07

Browse files
committedNov 23, 2024·
fix: friendlier error message for nuxt content
1 parent 66cde80 commit a80aa07

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
 

‎client/app.vue

+5-2
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ const currentPageFile = computed(() => {
376376
<main class="mx-auto flex flex-col w-full">
377377
<div v-if="tab === 'design'" class="h-full relative max-h-full">
378378
<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')">
380380
<!-- nicely tell the user they should use defineOgImage to get started -->
381381
<div class="flex flex-col items-center justify-center mx-auto max-w-135 h-85vh">
382382
<div class="">
@@ -387,7 +387,10 @@ const currentPageFile = computed(() => {
387387
<p class="text-lg opacity-80 my-3">
388388
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.
389389
</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">
391394
<a href="https://nuxtseo.com/og-image/getting-started/getting-familar-with-nuxt-og-image" target="_blank" class="underline">
392395
Learn more
393396
</a>

‎src/module.ts

+1
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,7 @@ declare module '#og-image/unocss-config' {
594594
hasNuxtIcon: hasNuxtModule('nuxt-icon') || hasNuxtModule('@nuxt/icon'),
595595
colorPreference,
596596

597+
hasNuxtContent: hasNuxtModule('@nuxt/content'),
597598
strictNuxtContentPaths: config.strictNuxtContentPaths,
598599
// @ts-expect-error runtime type
599600
isNuxtContentDocumentDriven: config.strictNuxtContentPaths || !!nuxt.options.content?.documentDriven,

‎src/runtime/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export interface OgImageRuntimeConfig {
3636
hasNuxtIcon: boolean
3737
colorPreference: 'light' | 'dark'
3838

39+
hasNuxtContent: boolean
3940
isNuxtContentDocumentDriven: boolean
4041
strictNuxtContentPaths: boolean
4142
zeroRuntime: boolean

0 commit comments

Comments
 (0)
Please sign in to comment.