Currently working on a React website, I decided to eject my project in order to use css modules styles. After running npm run eject
, I made additional configurations in the webpack.config.dev.js and webpack.config.prod.js files. However, I encountered an issue with a component called react-big-calendar. This component requires importing a css file for styling purposes.
Unfortunately, when enabling the module features, the css styles are not being applied to the calendar as expected. Previously, it looked like this: https://i.sstatic.net/95kwg.jpg
But now, it appears like this: https://i.sstatic.net/LuxQE.jpg
Any suggestions on how I can successfully apply classes from the big-calendar css file?
Thank you!