上では動作しません、私は次のWebPACKの設定ファイルがあります:私は打ったときリアクト-ルータBrowserRouter/browserHistoryとをリフレッシュ
var webpack = require('webpack');
var path = require('path');
var BUILD_DIR = path.resolve(__dirname, 'src/client/public');
var APP_DIR = path.resolve(__dirname, 'src/client/app');
var config = {
entry: [
APP_DIR + '/config/routes.jsx',
'webpack/hot/dev-server',
'webpack-dev-server/client?http://localhost:8080'
],
output: {
publicPath: 'http://localhost:8080/src/client/public/'
},
module : {
loaders : [
{
test: /\.jsx?$/,
loader: 'babel-loader',
include: APP_DIR,
exclude: /node_modules/,
query: {
presets: ['es2015']
}
},
{
test: /\.scss$/,
loaders: [ 'style', 'css', 'sass' ]
},
{
test: /\.json$/,
loader: "json-loader"
}
]
}
};
module.exports = config;
は私がやろうとしていますすべては、しかし、ローカルホスト上の私のアプリを実行しています: " http://localhost:8080/src/client/home「
import React from 'react';
import { Route, Router, browserHistory } from 'react-router';
import ReactDOM from 'react-dom';
import Wrapper from './../components/wrapper.jsx';
import Home from './../components/home.jsx';
import Projects from './../components/projects.jsx';
import SingleProject from './../components/projectContent/singleProject.jsx';
import About from './../components/aboutUs.jsx'
ReactDOM.render((
<Router history={browserHistory} >
<Route path="/" component={Wrapper} >
<Route path="home" component={Home} />
<Route path="projects" component={Projects} />
<Route path="projects/:id" component={SingleProject} />
<Route path="about" component={About} />
</Route>
</Router>
), document.getElementById('app'));
(私のroutes.jsxあたりとのWebPACK-devのサーバーを実行した後のように)私は
取得 "取得することはできません/ SRC /クライアント/ホームを"。あなたのWebPACKの設定でこれを追加する必要が
をWebPACKのWebPACKの-devのサーバーにのみビルドディレクトリ内のファイルを提供しています。あなたの場合、 'src/client'の中の' public'フォルダです。したがって、 '/ src/client/home'は見つかりません。 –
http:// localhost:8080/homeにアクセスしてみてください –