I am trying to import bootstrap css file from node_modules but it is not importing whereas I am able to import the scss file.
Below import is not working.
import bs from "bootstrap/dist/css/bootstrap.css";
Below import is working.
import bs from "bootstrap/sss/bootstrap.scss";
Can anyone please find that what is the issue?