As a newcomer to the webpack/react app environment, I am attempting to incorporate the Basscss CSS framework into my project. After successfully running 'npm i basscss' and adding
require('basscss/css/basscss.css');
to my app entry point, I now find myself in need of including basscss-addons for additional styling capabilities.
My question is: Should I add a separate require line for each file in the basscss-addons collection? Given that each addon is housed in its own file with varying folder structures, this approach seems tedious. Surely there must be a more efficient way to handle this.