I am working with Reactjs and using Nextjs, I want to include/add CSS to my project, My CSS files exist in styles
folder, To include this I created the file _document.js
and used the following code, but CSS file not loading, Where I am wrong? Here is my _document.js
code
import Document, { Head, Main, NextScript } from 'next/document'
export default class MyDocument extends Document {
render() {
return (
<html>
<Head>
<link
rel="stylesheet"
href="../styles/css/style.css"
/>
</Head>
<body>
<Main />
<NextScript />
</body>
</html>
)
}
}