Je suis nouveau sur reactjs, je souhaite inclure bootstrap dans mon application react
J'ai installé bootstrap par npm install bootstrap --save
Maintenant, je veux charger bootstrap css et js dans mon application react.
J'utilise webpack.
webpack.config.js
var config = {
entry: './src/index',
output: {
path: './',
filename: 'index.js'
},
devServer: {
inline: true,
port: 8080,
historyApiFallback: true,
contentBase:'./src'
},
module: {
loaders: [
{
test: /\.js?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015', 'react']
}
}
]
}
};
module.exports = config;
Mon problème est "comment inclure bootstrap css et js dans l'application reactjs à partir de node_modules?" Comment configurer le bootstrap à inclure dans mon application React?