solid-meta
solid-meta copied to clipboard
Write meta tags to the document head
Say, for example, if `index.html` is having `` tag already, the new `title` tag is getting appended.. so, browser is taking the first one (which is used in the `index.html`).....
Vite prerender doesn't work, it throws `createUniqueId cannot be used under non-hydrating context` https://github.com/solidjs/solid-meta/blob/4e7c6eb47daf55dacf12f200c16ca9bd69e90ae4/src/index.tsx#L174 Related to #13
### Describe the bug I would like to know if it is possible to change, for example, the `````` tag depending on a certain page along with solid router? I...
I spent some time today coming up with a design that is closer to Helmet. It's a naive implementation, but it works well and can provide more flexibility than `solid-meta`'s...
As has been discussed [here](https://discord.com/channels/722131463138705510/780502110772658196/919160483855077377) on the discord, there are a lot of advantages sending a `Link` header. Thenceforth it would be nice to have the ability to generate the...
The example shown in readme (solid-start section) does not work out of the box. It shows error `tags array should be passed to in node`, however there is no suitable...
My project was written in solid-start with solid-meta In my Macbook everything is ok, but when I open it on iPad, it will trigger this error in dev mode. iPad...
I am resurfacing this issue as it got lost in GitHub history without a full resolution. See this issue and my comment for context: https://github.com/solidjs/solid-meta/issues/34#issuecomment-1821621091 I created a proposed implementation,...
**Expected behavior:** Rendering from cached responses from solid-router within meta components, eg: ```tsx {house()} ``` Should be able to be caught by a parent `ErrorBoundary` **Actual behavior:** Solid-start crashes with...
I don't think there is currently any easy way to set attributes such as lang, dir, or class differently per-route for the tags that only occur once per page (html,...