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

I encountered this recently It should be the way SSR handles string concentration differently from the client. It is a bug but I don't know where to track down. fixes...

Reproduced issue here: https://stackblitz.com/edit/solidjs-templates-pblvuq?file=src%2Froutes%2Ftest%2F%5Bid%5D.tsx Start with `npm run dev`, then navigate to route **/test/1**. The title should read `abel bernice charlie`, but instead it reads `abel, ,bernice, ,charlie`. I am...

It'd be nice if you could use script tags. Support would be greatly appreciated.

As I said in [this issue](https://github.com/solidjs/solid-meta/issues/34#issuecomment-1823048699), I've rearranged the attributes that may appear on the `meta` element, as well as new test cases for the `meta` element. In the following,...

https://github.com/solidjs/solid-meta/commit/6ed1c1bb8120b489b5f24c782c8b6ce1bc3e3839 I think the runtime error issue that seems to have been fixed in a commit on the main branch. However, the fix hasn't been reflected in the latest release...

reproduction: ```tsx export function App() { return ( {[].length} items ); } const html = await renderToStringAsync(() => ); const head = getAssets(); ```

I'd like to specify the page language (SSR or not) but it looks like <html lang...> can only be hardcoded in index.html. I had a look at https://github.com/solidjs/solid-site/ and I...

* Include the SolidStart setup for `@solid/meta`. * Point out possible issues with normal `` tags being SSR'd. * Change code block syntax highlighting from `js` to `jsx`.

If you try to read context inside `content` prop of `Meta` component provided by start, the context will not be available, which is not expected as it's used directly under...

bug

# What this changes - `` tags are not replaced by default. - `` tags are considered to be the same and overridden if the `key` (string) prop matches. That's...