I need the CSS that is provided to styled-components
to be output to a physical CSS file inside of my public/css
directory.
export const MyComp = styled.div`
width: 100%;
height: 500px;
`
Along with styles from all other styled-components, the above component would output into public/css/styled.css
:
.Components_MyComp__a39t9ag0248f {
width: 100%;
height: 500px;
}
I am using:
"webpack": "^2.6.1",
"styled-components": "^2.0.1",