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
x
53
53
1
import React from 'react';
2
import '../node_modules/bootstrap/dist/css/bootstrap.min.css';
3
import BootstrapTable from 'react-bootstrap-table-next';
4
5
class Home extends React.Component {
6
state = {
7
products: [
8
{
9
id: 1,
10
name: 'TV',
11
'price': 1000
12
},
13
{
14
id: 2,
15
name: 'Mobile',
16
'price': 500
17
},
18
{
19
id: 3,
20
name: 'Book',
21
'price': 20
22
},
23
],
24
columns: [{
25
dataField: 'id',
26
text: 'Product ID'
27
},
28
{
29
dataField: 'name',
30
text: 'Product Name'
31
}, {
32
dataField: 'price',
33
text: 'Product Price',
34
sort: true
35
}]
36
}
37
38
render() {
39
return (
40
<div className="container" style={{ marginTop: 50 }}>
41
<BootstrapTable
42
striped
43
hover
44
keyField='id'
45
data={ this.state.products }
46
columns={ this.state.columns } />
47
</div>
48
);
49
}
50
}
51
52
export default Home;
53
My package.json file looks like this:
JavaScript
1
24
24
1
{
2
"name": "codist.org",
3
"version": "0.1.0",
4
"private": true,
5
"dependencies": {
6
"bootstrap": "^4.0.0",
7
"material-ui": "^1.0.0-beta.25",
8
"material-ui-icons": "^1.0.0-beta.17",
9
"react": "^16.2.0",
10
"react-bootstrap-table-next": "^1.1.3",
11
"react-dom": "^16.2.0",
12
"react-router-dom": "^4.2.2",
13
"react-scripts": "^1.1.5",
14
"reactstrap": "^6.3.0"
15
},
16
"scripts": {
17
"start": "react-scripts start",
18
"build": "react-scripts build",
19
"test": "react-scripts test --env=jsdom",
20
"eject": "react-scripts eject"
21
},
22
"proxy": "http://localhost:8080"
23
}
24
Any suggestions for how to resolve that error?
Advertisement
Answer
Try this:
JavaScript
1
2
1
import 'bootstrap/dist/css/bootstrap.min.css';
2
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.