Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency nuxt-og-image to v4 #1610

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ watch(() => search.value?.commandPaletteRef?.query, debounce((query) => {
<template>
<UHeader :links="links">
<template #logo>
<TheLogo />
<TheLogo class="scale-[1.20]" />
</template>
<template #right>
<UColorModeButton v-if="!$colorMode.forced" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ defineProps({
<img
v-if="image"
:src="image"
height="80px"
width="80px"
class="h-20 w-20 rounded ml-8"
>
</h1>
Expand All @@ -41,9 +43,3 @@ defineProps({
<TheLogo class="w-[349px] h-[60px] text-white" />
</div>
</template>

<style scoped>
._gradient {

}
</style>
2 changes: 1 addition & 1 deletion docs/components/TheLogo.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<svg
class="mb-[-5px] ml-[14px] h-6 w-auto scale-[1.20] text-black dark:text-white"
class="mb-[-5px] ml-[14px] h-6 w-auto text-black dark:text-white"
width="466"
height="80"
viewBox="0 0 466 80"
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@vueuse/core": "^12.3.0",
"@vueuse/nuxt": "^12.3.0",
"nuxt": "^3.15.1",
"nuxt-og-image": "^2.2.6",
"nuxt-og-image": "^4.0.2",
"perfect-debounce": "^1.0.0"
},
"devDependencies": {
Expand Down
3 changes: 1 addition & 2 deletions docs/pages/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ useSeoMeta({
ogDescription: page.value.description,
})

defineOgImage({
component: 'Docs',
defineOgImageComponent('Docs', {
title: page.value.title,
description: page.value.description,
image: isProvider ? `${page.value._path}.svg` : '',
Expand Down
3 changes: 1 addition & 2 deletions docs/pages/playground.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ useSeoMeta({
ogTitle: `Nuxt Image Playground`,
description,
})
defineOgImage({
component: 'Docs',
defineOgImageComponent('Docs', {
title,
description,
})
Expand Down
1,415 changes: 248 additions & 1,167 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading