我是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应用程序中包含引导CSS和js?” 如何设置引导程序以包含在我的React应用程序中?
如果在项目中使用CRA(create-react-app),则可以添加以下内容:
如果您在应用程序中使用引导程序,并且无法正常工作,请在index.html中使用它:
我做了上面的工作来解决类似的问题。希望这对您有用:-)