Skip to content

Commit 94ee128

Browse files
committed
fix: 画像のpreloadを削除
1 parent 5182508 commit 94ee128

File tree

7 files changed

+2
-16
lines changed

7 files changed

+2
-16
lines changed

apps/web/app/components/event/EventAsset.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const props = defineProps<EventAssetProps>()
2121
width="920"
2222
height="444"
2323
fit="cover"
24-
preload
2524
loading="lazy"
2625
/>
2726
</template>

apps/web/app/components/event/EventMultipleAssets.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ const props = defineProps<EventMultipleAssetsProps>()
2424
width="792"
2525
height="512"
2626
fit="cover"
27-
preload
2827
loading="lazy"
2928
class="image"
3029
/>

apps/web/app/components/sponsor/SponsorList.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const currentLocale = useLocaleCurrent().locale
2626
class="sponsor-list-item-image"
2727
:src="item['image_url']"
2828
:alt="item.name"
29-
preload
3029
loading="lazy"
3130
/>
3231
</NuxtLink>

apps/web/app/components/ticket/NamecardSection.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ const { locale: currentLocale } = useLocaleCurrent()
3030
width="auto"
3131
height="auto"
3232
fit="cover"
33-
preload
3433
loading="lazy"
3534
/>
3635
<div class="buttons-wrapper">

apps/web/app/components/ticket/PersonalSponsorSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { ticketUrl } from '~/utils/constants'
1616
:detail="$t(`personal_sponsor.merit${i}.detail`)"
1717
:caution="i === 2 || i === 4 ? $t(`personal_sponsor.merit${i}.caution`) : ''"
1818
>
19-
<NuxtImg alt="" :src="`/sponsor/merit-${i}.jpg`" preload loading="lazy" />
19+
<NuxtImg alt="" :src="`/sponsor/merit-${i}.jpg`" loading="lazy" />
2020
</VFMeritCard>
2121
</div>
2222
<div class="personal-sponsor-text">

packages/ui/components/speaker/Avatar.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ const size = computed(() => {
2424
:alt="alt"
2525
:loading="loading"
2626
placeholder
27-
preload
2827
:width="size"
2928
:height="size"
3029
fit="cover"

packages/ui/components/store/Product.vue

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,7 @@ const props = defineProps<StoreItemProps>()
99
<template>
1010
<div class="store-item">
1111
<a :href="url" target="_blank">
12-
<NuxtImg
13-
:alt
14-
:src
15-
width="616"
16-
height="616"
17-
fit="cover"
18-
preload
19-
loading="lazy"
20-
class="image"
21-
/>
12+
<NuxtImg :alt :src width="616" height="616" fit="cover" loading="lazy" class="image" />
2213
</a>
2314
<div class="name">{{ name }}</div>
2415
<div class="price">{{ price }}</div>

0 commit comments

Comments
 (0)