我是 ReactJS 的新手,我想在我的 React 应用程序中包含引导程序
我已经安装了引导程序 npm install bootstrap --save
现在,想在我的 React 应用程序中加载引导 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;
我的问题是“如何从节点模块在 ReactJS 应用程序中包含引导 CSS 和 JS?”如何设置引导程序以包含在我的 React 应用程序中?
原文由 Mehul Mali 发布,翻译遵循 CC BY-SA 4.0 许可协议
如果您是 React 新手并使用
create-react-app
cli setup,请运行下面的 npm 命令以包含最新版本的引导程序。或者
然后在
index.js
文件中添加以下导入语句。 ( https://getbootstrap.com/docs/4.4/getting-started/webpack/#importing-compiled-css )或者
不要忘记使用
className
作为目标元素的属性(react 使用className
作为属性而不是class
)。