How do you add global CSS in Next.js?

Beginner

Answer

Global CSS can only be imported in _app.js:

// pages/_app.js
import '../styles/globals.css';

function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />;
}

export default MyApp;