-
I'm trying to build a completely static website without backend and struggle with meta tags (SEO).
File
Could you explain:
|
Beta Was this translation helpful? Give feedback.
Answered by
Ocean-OS
Dec 5, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lebe-dev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
svelte:head
implies the use of reactivity in the head element, which doesn't work well with SEO. SEO usually takes the initially loaded head element when crawling web pages.To make this work, if you aren't using any reactivity, use a regular
head
element.