Posso solo vedere l'app reale sotto /public
.
Le configurazioni in webpack.config.js
sono di seguito:
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
'./app/js/App.js'
],
output: {
path: path.join(__dirname, 'public'),
filename: 'bundle.js',
publicPath: 'http://localhost:8080'
},
module: {
loaders: [
{
test: /\.js$/,
loaders: ['react-hot', 'babel-loader'],
exclude: /node_modules/
}
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
};
La gerarchia del progetto è:
app
- js
node_modules
pubblico
css
img
bundle.js
index.html
package.json
webpack.config.js
Come posso modificare per assicurarmi che la http://localhost:8080/
voce sia per l'applicazione in sé?