我正在用webpack学习reactjs。我在添加时发现错误
import 'bootstrap/dist/css/bootstrap.min.css';
中的index.js
我已经成功安装了引导加载程序,但没有得到我看到此错误的原因。
我注意到以前有很多人问过一个问题,但是那些问题不能解决我的问题,请不要将其报告为重复问题
这是我的webpack:
const HtmlWebPackPlugin = require("html-webpack-plugin");
const htmlWebpackPlugin = new HtmlWebPackPlugin({
template: "./src/index.html",
filename: "./index.html"
});
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: ["babel-loader", "bootstrap-loader"]
},
{
test: /\.css$/,
use: ["style-loader", "css-loader", "bootstrap-loader"]
}
]
},
plugins: [htmlWebpackPlugin]
};
错误触发:
ERROR in ./src/index.js
Module build failed (from ./node_modules/bootstrap-loader/loader.js):
Error: Cannot find module './lib/bootstrap.loader!./no-op.js'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)