Webpack-dev-server 提供目录列表而不是应用程序页面

Webpack-dev-server serves a directory list instead of the app page

我只能在/public下看到实际应用。

webpack.config.js中的配置如下:

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()
  ]

};

项目层次结构是:

如何修改以确保 http://localhost:8080/ 条目是针对应用程序本身的?

如果您使用的是 webpack 的开发服务器,您可以传入选项以使用 /public 作为基本目录。

devServer: {
    publicPath: "/",
    contentBase: "./public",
    hot: true
},

有关更多选项和一般信息,请参阅 webpack configuration docs, and specifically the webpack dev server docs

您还可以将 --content-base 标记添加到您的启动脚本中,例如

    "scripts": {
        "start:dev": "webpack-dev-server --inline --content-base ./public"
    }

就我而言,我在设置 HTMLWebpackPlugin 时拼错了 'index.html'。如果您正在使用此插件,请仔细检查您的文件名。

var HTMLWebpackPlugin = require('html-webpack-plugin');
var HTMLWebpackPluginConfig = new HTMLWebpackPlugin({
  template: __dirname + '/app/index.html',
  filename: 'index.html',
  inject: 'body'
});

我不小心删除了index.html,然后我只得到了目录列表。