Great project! I would like to know how would you suggest adding SASS to the pipeline. Where you put the scss files in the current folder structure? How about the webpack.config?
Thanks!
Hi, I try to add SASS (scss) into MERN in dev. This is a simple way how to do it
codingfrontend.herokuapp.com/posts/how-to-add-scs…
Hope It helps!
Prashant Abhishek
Co-founder at AltCampus
MERN is un-opinionated about handling CSS. You can use CSS as modules for individual components or use a single file to place all CSS (like its in mern-starter right now). However, you can easily use SASS by using sass-loader in webpack.config.
Hope it helps!