diff --git a/app/components/VProject.vue b/app/components/VProject.vue index 5da4976..766a603 100644 --- a/app/components/VProject.vue +++ b/app/components/VProject.vue @@ -5,6 +5,9 @@ const props = defineProps<{ project: ProjectsCollectionItem }>() +const { app } = useRuntimeConfig() +const withBase = (path: string) => `${app.baseURL}${path.startsWith('/') ? path.slice(1) : path}` + const isMediumScreen = useMediaQuery('(min-width: 768px)') const descToggled = ref(false) const popupImageToggled = ref(false) @@ -52,8 +55,8 @@ function handleToggle() {
- - + +