0
を働いていない:WebPACKのdevのサーバーは、私はこのような<code>webpack.config.js</code>ファイル持って
var path = require('path')
var webpack = require('webpack');
module.exports = {
entry: "./index.js",
output: {
path: path.join(__dirname, 'static'),
filename:'bundle.js'
},
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: "babel-loader"},
{ test: /\.json$/, loader: 'json-loader' },
]
}
};
を、私のpackage.json
は次のようである:
"scripts": {
"test": "mocha --compilers js:babel-register --recursive tests/*.js",
"test:watch": "npm test -- --watch",
"build": "webpack --progress --profile --colors",
"build:watch": "webpack --progress --profile --colors --watch",
"start": "webpack-dev-server"
が、私はnpm run start
を実行すると、それは...
events.js:141
throw er; // Unhandled 'error' event
ここで問題は何ですか?