Ich bin ein Neuling in der Reaktion. Ich möchte Bootstrap in meine Reaktions-App aufnehmen
Ich habe Bootstrap von installiert npm install bootstrap --save
Jetzt möchte ich Bootstrap CSS und JS in meine Reaktions-App laden.
Ich benutze 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;
Mein Problem ist "Wie kann man Bootstrap-CSS und -JS von node_modules in die reactjs-App aufnehmen?" Wie richte ich ein, damit Bootstrap in meine Reaktions-App aufgenommen wird?