fix: meta og:url should use the origin of the request instead of elk.zone (#2550)

main
Joshix-1 2024-01-09 08:14:35 +00:00 committed by GitHub
parent 3fa1fc349c
commit d8ea685803
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -5,9 +5,11 @@ provideGlobalCommands()
const route = useRoute()
if (process.server && !route.path.startsWith('/settings')) {
const url = useRequestURL()
useHead({
meta: [
{ property: 'og:url', content: `https://elk.zone${route.path}` },
{ property: 'og:url', content: `${url.origin}${route.path}` },
],
})
}