I'm suspecting this is not a NextJS question, but I hope no one minds me asking. I found a font package I want to use. It has a node package and it mentions to import the css file that comes bundled. I tried importing it as
import "./node_modules/rpg-awesome/css/rpg-awesome.min.css";
into my root layout.tsx as well as
@import "./node_modules/rpg-awesome/css/rpg-awesome.min.css";
into my global.css. In both cases, it doesn't seem to be able to find the file. Anyone have advice on what I'm doing wrong?