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 cef9bd9 commit cdcd98cCopy full SHA for cdcd98c
packages/nuxt/src/runtime/components/UnLazyImage.vue
@@ -73,7 +73,7 @@ const unlazy = useRuntimeConfig().public.unlazy as ModuleOptions
73
const hash = computed(() => props.thumbhash || props.blurhash)
74
75
// SSR-decoded BlurHash as PNG data URI placeholder image
76
-const pngPlaceholder = (process.server && (props.ssr ?? unlazy.ssr) && hash.value)
+const pngPlaceholder = (props.ssr ?? unlazy.ssr) && hash.value
77
? createPlaceholderFromHash({
78
hash: hash.value,
79
hashType: props.thumbhash ? 'thumbhash' : 'blurhash',
0 commit comments