react-router-component を使用して React アプリケーションのルートを作成しようとしています。しかし、webpack でプロジェクトをビルドすると、次のエラーが発生します。
ERROR in ./app/js/client.jsx
Module build failed: Error: Parse Error: Line 22: Unexpected token <
ルートは client.jsx ファイルにあり、次のようになります。
'use strict';
var React = require('react');
var Router = require('react-router-component');
var Locations = Router.Locations;
var Location = Router.Location;
var {MainPage} = require('./components/views/app.jsx');
var App = React.createClass({
render: function() {
return (
<Locations>
<Location path="/" handler={MainPage} />
</Locations>
)
}
})
React.render(React.createElement(App), document.body)
ここで何が間違っているのかわかりません。どんな助けでも大歓迎です。さらに情報が必要な場合はお知らせください。ありがとう!
編集:私のwebpack構成は次のようになります:
webpack: {
client: {
entry: __dirname + '/app/js/client.jsx',
output: {
path: 'build/',
file: 'bundle.js'
},
module: {
loaders: [
{
test: /\.jsx$/,
loader:'jsx-loader'
}]
}
},
test: {
entry: __dirname + '/test/client/test.js',
output: {
path: 'test/client/',
file: 'bundle.js'
},
module: {
loaders: [
{
test: /\.jsx$/,
loader:'jsx-loader'
}]
}
},
karma_test: {
entry: __dirname + '/test/karma_tests/test_entry.js',
output: {
path: 'test/karma_tests/',
file: 'bundle.js'
},
module: {
loaders: [
{
test: /\.jsx$/,
loader:'jsx-loader'
}]
},
background: true
}
},
これまでのプロジェクト全体は、https ://github.com/mrbgit/short-stories/tree/add-category-age で確認できます。