當我運行的WebPack,我得到這個錯誤:(新行增加了清晰度)的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配置中設置了'resolve.root'時,它與我上面的入口點一起工作。 – bigblind
或者您可以設置resolve.root - 在這種情況下不需要'/','./'或'../' –
這是幫助我的答案! –