gpt4 book ai didi

未找到 webpack 入口模块

转载 作者:行者123 更新时间:2023-12-04 13:59:01 26 4
gpt4 key购买 nike

当我运行 webpack 时,我得到这个错误:

ERROR in Entry module not found: Error: Cannot resolve module 'game'
in /Users/frederikcreemers/dev/dark_chess

(为清楚起见,添加了换行符。)

但我确定 game.js存在。

这是我的 webpack.config.js好像:
module.exports = {
entry: "game.js",
output: {
path: __dirname + "build",
filename: "index.js"
},
module: {
loaders: [
{ test: /\.css$/, loader: "style!css" },
{ test: /\.jsx?$/, loader: "babel?presets[]=es2015", exclude: /(node_modules|bower_components)/}
]
}
};

我不确定如何进一步调查这个问题。

最佳答案

webpack entry 选项通常解析为 File Module .

因此,您可能需要指出 game.js 的相对路径。文件模块:

entry: "./game.js",

否则 webpack 将尝试将其作为核心模块或从 node_modules 加载。文件夹。

Without a leading '/', './', or '../' to indicate a file, the module must either be a core module or is loaded from a node_modules folder.

关于未找到 webpack 入口模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34570245/

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