Só consigo ver o aplicativo real em /public
.
As configurações em webpack.config.js
estão abaixo:
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()
]
};
A hierarquia do projeto é:
aplicativo
- js
node_modules
público
css
img
bundle.js
index.html
package.json
webpack.config.js
Como posso modificar para ter certeza de que a http://localhost:8080/
entrada é para o aplicativo em si?
node.js
reactjs
webpack
reactjs-flux
webpack-dev-server
Jason Lam
fonte
fonte
Você também pode adicionar a
--content-base
bandeira ao seu script de inicialização, por exemplo"scripts": { "start:dev": "webpack-dev-server --inline --content-base ./public" }
fonte
No meu caso, escrevi incorretamente
'index.html'
ao configurar oHTMLWebpackPlugin
. Verifique novamente os nomes dos arquivos se estiver usando este plugin.var HTMLWebpackPlugin = require('html-webpack-plugin'); var HTMLWebpackPluginConfig = new HTMLWebpackPlugin({ template: __dirname + '/app/index.html', filename: 'index.html', inject: 'body' });
fonte
template
parâmetro, posso especificar meu próprio html sem problemas. Muito obrigado!Eu tinha removido acidentalmente index.html e então obtive apenas a lista de diretórios.
fonte