gpt4 book ai didi

webpack - 如何解决参数数量不足或找不到条目。或者,运行 'webpack(-cli) --help'以获得使用信息

转载 作者:行者123 更新时间:2023-12-03 15:33:40 25 4
gpt4 key购买 nike

运行命令Insufficient number of arguments or no entry found.
Alternatively, run 'webpack(-cli) --help' for usage info.
时出现错误npm run dev,在此代码下我也收到一条错误,提示ERROR in Entry module not found: Error: Can't resolve后跟路径。我不太确定为什么找不到找不到任何帮助的入口,将不胜感激。

将整个项目上传到github以帮助提高可视性。
https://github.com/dustinm94/coding-challenge

webpack.config.js

  module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
}
}

package.json
{
"name": "coding_challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development --watch ./coding/frontend/src/index.js --output ./coding/frontend/static/frontend/main.js",
"build": "webpack --mode production ./coding/frontend/src/index.js --output ./coding/frontend/static/frontend/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"babel-preset-react": "^6.24.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}

.babelrc
{
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ["transform-class-properties"]
}

最佳答案

下面提到了解决您的问题的方法
webpack.config.jspackage.json将始终位于您的项目基本路径中,并且
节点命令应从此路径触发

您必须在webpack.config.jspackage.json中进行以下更正

package.json
--watch将自动在entry中的webpack.config.js对象中查找指定的文件,并继续观察其依赖关系图以在检测到更改时自动重新加载。您需要使用以下详细信息更新package.json

"scripts": {
"webpack" : "webpack", // invoke this command from npm run dev & npm run build
"dev": "npm run webpack -- --mode development --watch",
"build": "npm run webpack -- --mode production"
}

在监视模式下运行可能会导致性能问题,具体取决于您所使用的硬件 read more about it

webpack.config.js

entry对象添加到您的 webpack.config.js中。如果您没有覆盖输入对象,则默认情况下,Webpack会将 entry对象指向'。/src/index.js`。由于您未在项目中使用默认配置,因此webpack会引发错误
ERROR in Entry module not found: Error: Can't resolve './src' in '/root/../coding_challenge'

要解决该错误,您需要使用目标 entry文件覆盖 js对象,如下所示
module.exports = {
entry : "./frontend/src/index.js",
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
}
}

(如果已完成上述更正),
npm run dev将在监视模式下运行您的项目
npm run build将为您的项目生成生产版本

让我知道此信息是否解决了您的问题

关于webpack - 如何解决参数数量不足或找不到条目。或者,运行 'webpack(-cli) --help'以获得使用信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55438230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com