Skip to content
Advertisement

Can’t resolve ‘../node_modules/bootstrap/dist/css/bootstrap.min.css’?

I am trying to use react-bootstrap-table2 in my project to create a simple bootstrap table, but am getting the error:

Failed to Compile: Module not found: Can’t resolve ‘../node_modules/bootstrap/dist/css/bootstrap.min.css’ in ‘/Users/xxx/Documents/xxx/src/routes/home’.

I did install all the necessary packages and verified that bootstrap.min.css exists where it should.

My code looks like this:

JavaScript

My package.json file looks like this:

JavaScript

Any suggestions for how to resolve that error?

Advertisement

Answer

Try this:

JavaScript

When not specifying a path, Node/webpack will search for the import inside node_modules folder. I’m not sure what’s going wrong, but this is the correct way to import modules from the node_modules folder.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement