Replies: 1 comment 1 reply
-
You can only do it for the whole app, but it looks something like this app = rx.App(
head_components=[
rx.el.link(
href="fancy.css",
rel="alternate stylesheet",
title="Fancy",
),
]
) You can also add meta tags via the same method with And it's not really supported, but you can also include raw inline styles via rx.el.element.Element.create("p {color: blue}", tag="style"), |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello. There was an issue #662 (Possibly to add link tags in ). It's closed as completed. But I can't find how to do it. Every bit of information I find is about
rx.script
. Is there a way to do it?Beta Was this translation helpful? Give feedback.
All reactions