Closed isaacs closed 5 years ago
Putting styles in a style tag inside of <Helmet> means that it's not included in the SSR.
<Helmet>
Either need to add a gatsby-ssr.js that does this, or just figure out how to link a stylesheet the old fashioned way, or use component CSS like react intended.
It turns out that it's stupidly easy, and I was just making it way more complicated than it needed to be.
Putting styles in a style tag inside of
<Helmet>
means that it's not included in the SSR.Either need to add a gatsby-ssr.js that does this, or just figure out how to link a stylesheet the old fashioned way, or use component CSS like react intended.