#Styled-Components in astro
4 messages · Page 1 of 1 (latest)
In general, we advise against using styled-components — there’s a detailed issue tracking CSS-in-JS support here: https://github.com/withastro/astro/issues/4432
Here are the notes on styled-components from that issue:
Prod build errors with:
styled.div is not a function.
Can be worked around withclient:onlyor by usingbuildSsrCjsExternalHeuristicsandssr.noExternal(will cause FOUC).
Many thanks