I'm currently working on a React application that consists of two distinct sections, referred to as Part A and Part B.
Each part requires its own set of SCSS rules and Bootstrap Grid System Customization. Specifically, I need Part A to have a 24-column grid system, while Part B should have a 16-column one. The challenge arises from the fact that Bootstrap only allows for a single customization file, preventing me from using separate configurations for each part without conflicts.
My dilemma lies in finding a solution to implement multiple customizations for both Part A and Part B. I've explored options like creating multiple entry points for React with Webpack and utilizing multiple HTML files, but these approaches haven't provided a satisfactory answer.
What would be the most effective way to achieve this goal? How can I implement multiple webpack customizations for each module seamlessly?