我是 reactjs 的新手,我想在我的 React 应用程序中包含引导程序
我已经安装了引导程序 npm install bootstrap --save
现在,想在我的 React 应用程序中加载 bootstrap css 和 js。
我正在使用 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;
我的问题是“如何在 node_modules 的 reactjs 应用程序中包含 bootstrap css 和 js?” 如何设置引导程序以包含在我的react应用程序中?