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

pull/2511/head^2
Joshix-1 2024-01-09 08:14:35 +00:00 zatwierdzone przez GitHub
rodzic 3fa1fc349c
commit d8ea685803
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -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}` },
],
})
}