0
問題がある メイクで構成されるリンクは
<Route path="L1/L2" component={Comp}/>
http://localhost:8080/bundle.js
の
http://localhost:8080/L1/bundle.js
は私のWebPACKの設定です:
var config = {
devtool: 'eval-source-map',
entry: __dirname + "/app/Index.js",
output: {
path: __dirname + "/public",
filename: "bundle.js"
},
module: {
loaders: [{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015','react']
}
}]
},
devServer: {
contentBase: "./public",
colors: true,
historyApiFallback: true,
inline: true
}
すべてのご協力をよろしくお願い申し上げます!
ありがとうございます:) – abderrahmen