Skip to content

Commit 58b8db0

Browse files
authored
Merge pull request #364 from vuejs-jp/revert-363-enhance/image-domains-test
Revert "test - update image.domains"
2 parents 75aac2e + f70008c commit 58b8db0

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const currentLocale = useLocaleCurrent().locale
2222
class="sponsor-list-item-link"
2323
:to="`${currentLocale === 'ja' ? '/' : `/${currentLocale}/`}sponsors/${item['detail_page_id']}`"
2424
>
25-
<NuxtImg
25+
<img
2626
class="sponsor-list-item-image"
2727
:src="item['image_url']"
2828
:alt="item.name"

apps/web/nuxt.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default defineNuxtConfig({
4040
// url: 'https://vuefes.jp/2024/',
4141
// },
4242
image: {
43-
domains: [process.env.NUXT_IMAGE_DOMAINS],
43+
domains: ['jjdlwtezpdclgxxagxpj.supabase.co'],
4444
quality: 80,
4545
format: ['avif', 'webp']
4646
},
@@ -175,7 +175,6 @@ export default defineNuxtConfig({
175175
newtSpaceUid: process.env.NUXT_NEWT_SPACE_UID,
176176
newtFormUid: process.env.NUXT_NEWT_FORM_UID,
177177
reCaptchaWebsiteKey: process.env.NUXT_RECAPTCHA_WEBSITE_KEY,
178-
imageDomains: process.env.NUXT_IMAGE_DOMAINS,
179178
// supabase
180179
supabaseUrl: process.env.SUPABASE_URL,
181180
supabaseKey: process.env.SUPABASE_KEY,

packages/ui/components/speaker/Avatar.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ const size = computed(() => {
1919
</script>
2020

2121
<template>
22-
<NuxtImg
22+
<img
2323
:src="src"
2424
:alt="alt"
2525
:loading="loading"
26-
placeholder
2726
:width="size"
2827
:height="size"
2928
fit="cover"

turbo.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"NUXT_NEWT_SPACE_UID",
1414
"NUXT_NEWT_FORM_UID",
1515
"NUXT_RECAPTCHA_WEBSITE_KEY",
16-
"NUXT_IMAGE_DOMAINS",
1716
"SUPABASE_URL",
1817
"SUPABASE_KEY",
1918
"SERVICE_KEY",

0 commit comments

Comments
 (0)