Remove external img provider
Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
This commit is contained in:
@@ -7,7 +7,6 @@ interface Props {
|
||||
image: string
|
||||
alt: string
|
||||
ogImage: string
|
||||
provider: string
|
||||
tags: Array<string>
|
||||
published: boolean
|
||||
}
|
||||
@@ -20,7 +19,6 @@ withDefaults(defineProps<Props>(), {
|
||||
image: '/nuxt-blog/no-image_cyyits.png',
|
||||
alt: 'no-alt',
|
||||
ogImage: '/nuxt-blog/no-image_cyyits.png',
|
||||
provider: 'cloudinary',
|
||||
tags: () => [],
|
||||
published: false,
|
||||
})
|
||||
@@ -32,7 +30,6 @@ withDefaults(defineProps<Props>(), {
|
||||
<div class="sm:col-span-3">
|
||||
<NuxtImg
|
||||
class="h-full w-full object-cover object-center rounded-t-2xl sm:rounded-l-2xl sm:rounded-t-none shadow-lg group-hover:scale-[1.02] transition-all duration-500"
|
||||
:provider="provider"
|
||||
:src="image"
|
||||
:alt="alt"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user