I'm having trouble importing the bootstrap css file from node_modules. It's not importing, even though I can import the scss file successfully.
The following import is not working:
import bs from "bootstrap/dist/css/bootstrap.css";
However, the following import is working fine:
import bs from "bootstrap/sss/bootstrap.scss";
Could someone please help me figure out what the issue might be?