solid-meta icon indicating copy to clipboard operation
solid-meta copied to clipboard

Write meta tags to the document head

Results 33 solid-meta issues
Sort by recently updated
recently updated
newest added

Maybe I don’t understand something, but I can’t change the title tag at all. I even copied the 1in1 code from the repository + created an empty project, anyway, the...

I am fetching a translation of a string with a resource in a component using ``. Similar to this (in short form): ```javascript import { Title } from "@solidjs/meta"; import...

Hi, the `tags` attribute in `MetaProvider` is defined optional but throws a runtime error when not provided: Error: tags array should be passed to in node Thanks and best

I'm using renderToStream() for SSR but renderTags() returns a string which ends up getting escaped. Is there a way to have something like renderTags() but have it return JSX?

Reproduced example: https://stackblitz.com/edit/solidjs-templates-zamsr7?file=src/App.tsx ### Code ```jsx ``` ### Expected behavior Both meta tags render in the `` as would happen if you do: ```html ``` ### Observed behavior Only the...

I get the following error when using `` in MDX files with SolidStart: Failed to execute 'replaceChild' on 'Node': The node to be replaced is not a child of this...

Perhaps I missed something, but it seems **solid-meta** doesn't _currently_ expose a way to set [json-ld](https://json-ld.org/) on the head. JSON-LD is Google's [preferred schema markup](https://youtu.be/cSF48tbsjJw?t=1353) and it's kind of a...

I have essentially 2 pages, on `host.com/` and on`host.com/:detailId`. Now, basically the structure is like this: ``` const Home: Component = () => { return ( Home ``` ``` const...

Hi, Initially, I did this in my codebase: ```tsx {errorReport().code || ''} ``` because of https://github.com/solidjs/solid-meta/blob/main/src/index.tsx#L222 [falsification trenary operation], empty string as well as undefined leads to a rendering of...