4
私はpublic/css
ディレクトリ内の物理CSSファイルに出力するためにstyled-components
に提供されるCSSが必要です。他のすべてのスタイルのコンポーネントからスタイルとともにReact Styled-Componentsを使って物理CSSファイルを生成する方法を教えてください。
export const MyComp = styled.div`
width: 100%;
height: 500px;
`
、上記の構成要素だろうpublic/css/styled.css
への出力:
.Components_MyComp__a39t9ag0248f {
width: 100%;
height: 500px;
}
私が使用しています:
"webpack": "^2.6.1",
"styled-components": "^2.0.1",
あなたの応答、友人を感謝します。私は '
'に一時的な解決策として '