【发布时间】:2017-12-08 13:17:43
【问题描述】:
我需要将提供给 styled-components 的 CSS 输出到我的 public/css 目录内的物理 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",
【问题讨论】:
标签: reactjs webpack babeljs styled-components