問題があります。グーグルで時間を無駄にしました。ここでこのエラーを質問する必要があります
var config = {
entry: './main.js',
output: {
path: require('path').resolve("./ReactApp/js"),
filename: 'bundle.js',
publicPath: 'http://127.0.0.1:2992/js'
},
devServer: {
inline: true,
port: 8080
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015', 'react']
}
}
]
}
}
module.exports = config;
どこに問題があるのか わかりません.React.jsを学びたいだけですが、これが私を妨げています.どこが間違っているのか説明してもらえますか? 前もって感謝します