1 min readFeb 20, 2019
Okay so what is the point of using Webpack to compile SASS, load the CSS into the style tag, then use another thing to extract it back to a separate file instead of just using node-sass to watch sass files and generate your css file from the command line? Seems like a lot of unnecessary setup and configuration when you could just run:
> node-sass — output-style nested — indept-type space — indent-width 2 -o ./public/css ./sass
Is there something I’m misunderstanding about the advantages of using Webpack in this way?