Search code examples
javascriptcssbootstrap-4reactstrap

React: import '../node_modules/bootstrap/dist/css/bootstrap.min.css'; error


I'm using the reactstrap library, Successfully installed the bootstrap and reactstrap

however when i use import '../node_modules/bootstrap/dist/css/bootstrap.min.css'; react won't compile. Is there a workaround?


Solution

  • try using the following import statement - without the node_modules/ and you should get around this issue

    import 'bootstrap/dist/css/bootstrap.min.css';
    

    working stackblitz here