Reactjs konusunda yeniyim, react uygulamama bootstrap eklemek istiyorum
Bootstrap'i şu şekilde yükledim: npm install bootstrap --save
Şimdi, react uygulamamda bootstrap css ve js'yi yüklemek istiyorum.
Web paketi kullanıyorum.
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;
Benim sorunum "node_modules'deki reactjs uygulamasına bootstrap css ve js'yi nasıl dahil edebilirim?" React uygulamama dahil edilecek önyükleme için nasıl kurulur?