下面是我的webpack.config.js。在浏览器开发人员工具中,获取“Uncaught ReferenceError:require is not defined”。
我一直试图解决这个问题,但仍然无法弄清楚我错过了什么..
我搜索了很多,但找不到合适的答案。
有人可以请帮帮我吗?
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const nodeExternals = require('webpack-node-externals');
// Constant with our paths
const paths = {
DIST: path.resolve(__dirname, 'dist'),
SRC: path.resolve(__dirname, 'src'),
JS: path.resolve(__dirname, 'src/js'),
};
// Webpack configuration
module.exports = {
entry: path.join(paths.JS, 'app.js'),
output: {
path: paths.DIST,
filename: 'app.bundle.js'
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(paths.SRC, 'index.html'),
}),
new ExtractTextPlugin('style.bundle.css'),
],
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
'babel-loader',
],
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract({
use: 'css-loader',
}),
},
{
test: /\.(png|jpg|gif)$/,
use: [
'file-loader',
],
},
],
},
resolve: {
extensions: ['.js', '.jsx'],
},
target: 'node',
externals: [nodeExternals()],
node: {
console: true,
fs: 'empty',
net: 'empty',
tls: 'empty'
},
devServer: {
contentBase: paths.SRC,
},
};
答案 0 :(得分:0)
发现了这个问题。您使用了target: node
。删除此项以解决此问题。
这指示Webpack在类似Node.js的环境中进行编译以使用(使用Node.js需要加载块而不是触摸任何内置模块,如fs或path)。当在浏览器中运行require时,不能使用polyfill,从而报告所述错误。