Files
webapp/app/app.vue
Ruslan Bakiev 4e49da5f9f
All checks were successful
Build Docker Image / build (push) Successful in 3m18s
Fix route conflict: move offer detail page to /offers/detail/[offerId]
- Change theme from cmyk to cupcake
- Move [offerId].vue to detail/[offerId].vue to avoid conflict with [productId]/index.vue
- Update all navigation references to use new /catalog/offers/detail/ path
2026-01-22 09:07:26 +07:00

15 lines
182 B
Vue

<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
useHead({
htmlAttrs: {
'data-theme': 'cupcake',
},
script: []
})
</script>