git bashでwebpack-dev-serverコマンドを実行して簡単なtodoアプリケーションを実行しているときに問題が発生しました。 error cannot find node modules inside the git Directory
私はローカルのWebPACK-devのサーバーをインストールしている:これは実際には私のwebpack.config.jsモジュールが見つかりませんwebpack-dev-server.js
var webpack = require("webpack");
var path = require("path");
module.exports = {
devtool : 'inline-source-map',
entry :[
'webpack-dev-server/client?http://127.0.0.1:8080/',
'webpack/hot/only-dev-server',
'./src'
],
output :{
path:path.join(__dirname,'public'),
filename :'bundle.js'
},
resolve :{
modulesDirectories :['./node_modules','src'],
extensions :['','.js']
},
module:{
loaders :[{
test : /\.jsx?$/,
exclude :/node_modules/,
loaders:['react-hot','babel?presets[]=react,presets[]=es2015']
}]
},
plugins :[
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
};
です。
私はスクリーンショット でエラーを添付している[1]:http://i.stack.imgur.com/Uexvg.png
ありがとうございました!私はあなたが提供したソリューションを試しても、私は同じエラーが発生している。私は[link](https://github.com/michaelcheng429/react-tutorial-todos)からコードを複製しました –
あなたの 'node_modules'フォルダを削除し、' npm install'をもう一度やってみてください。 npmのインストール中にエラーが発生していないかを確認してください – Geraint
Geraint貴重なサポートをいただきありがとうございます!私はnode_modulesを削除しましたが、npmはインストールしましたが、同じ問題が残っています –