#Styled-Components in astro

4 messages · Page 1 of 1 (latest)

shell viper
#

Is it possible to use styled-components in React components imported by astro now?
I can see them rendered properly in development but on build I get the styled.button is not a function error

deft plinth
#

Here are the notes on styled-components from that issue:

Prod build errors with: styled.div is not a function.
Can be worked around with client:only or by using buildSsrCjsExternalHeuristics and ssr.noExternal (will cause FOUC).

shell viper
#

Many thanks