When working with Reactjs (Nextjs), every time I try to incorporate "css" into my project, I encounter the following error on my screen:
Module not found: Can't resolve '../fonts/fontawesome-webfont.eot?v=4.7.0'
How can I solve this issue? Below is the code snippet from my _app.js file:
import Head from "next/head";
import React from "react";
import { Swiper, SwiperSlide } from "swiper/react";
import 'swiper/swiper.min.css'
import '../styles/globals.css'
import '../styles/css/style.css'
<link rel="stylesheet" href="../styles/css/bootstrap.min.css" />
<link rel="stylesheet" href="../styles/css/style.css" />
<link rel="stylesheet" href="../styles/css/jquery.mCustomScrollbar.min.css" />