I've decided to transition my regular React app to Next.js.
In the past, I would simply import SCSS files using:
import from '.componentName.scss'
However, now I need to import them using:
import style from 'componentName.module.scss
This means I have a lot of code to update since this project was already completed. Is there a way to configure Next.js to allow me to import SCSS files as I did before?