fix. 서버 미들웨어, 미들웨어 수정

This commit is contained in:
clkim
2025-12-19 17:39:46 +09:00
parent 4ca299be4a
commit 1d936966ae
25 changed files with 592 additions and 798 deletions

View File

@@ -41,8 +41,23 @@ const imagePaths = computed(() => {
<picture v-if="isResponsiveMode">
<source media="(min-width: 1024px)" :srcset="imagePaths.pc" />
<source media="(max-width: 1023px)" :srcset="imagePaths.mo" />
<img :src="imagePaths.pc" :alt="alt" v-bind="$attrs" loading="lazy" />
<img
:src="imagePaths.pc"
:alt="alt"
v-bind="$attrs"
loading="lazy"
decoding="async"
fetchpriority="auto"
/>
</picture>
<img v-else :src="imagePaths.mo" :alt="alt" v-bind="$attrs" loading="lazy" />
<img
v-else
:src="imagePaths.mo"
:alt="alt"
v-bind="$attrs"
loading="lazy"
decoding="async"
fetchpriority="auto"
/>
</template>