I will be using Semantic-UI-React in my project but I came across following issues:
Docs link : https://react.semantic-ui.com/usage#css
Docs say webpack 1 is supported but not recommended. I am using Create React App which comes with webpack version 1.14.0. So does that mean I should not use
Semantic-UI-React
with CRA?For styling, I also want some custom styles in my project , so I went with third option of
Semantic UI
package mentioned in the docs..npm install semantic-ui --save-dev
runsgulp
internally and creates asemantic
folder. But there is nodist
folder as mentioned in the docs. From which path I should refer thesemantic.min.css
in my index.js file?
I am basically trying to use Semantic-UI-React
with semantic.min.css
with some of my own styles on top of it. But it seems I am making some mistake in the setup. Another option may be to go ahead with Semantic UI CSS
package ? ...but according to docs I will not be able to use custom styles with this method.
I am a bit confused here , please help :)