I'm having trouble getting my custom CSS library to work with my components in NextJS. I'm attempting to import my custom CSS file in my components, but it doesn't seem to be working.
import React from 'react'
import '../../style/custom.module.css'
function Footer() {
return (
<div className="a b">
</div>
)
}
export default Footer
The location of my custom CSS file is
style/custom.module.css
I've checked the NextJS documentation and it states that custom CSS styles are supported by default in the latest version of NextJS.