Combining CSS styles from global and module in NextJS
There is a couple of ways to do this, these are just 2 without the need to install any package.
Let's start with the simple setup, in your pages/app.js you import your global styles
import "styles.css";
and in your component you add your styles wit...
pargeo.hashnode.dev1 min read