0

ページが正しく読み込まれ、クライアント コンソールにログが記録されます[WDS] Hot module replacement enabled。しかし、ファイルに変更を加えても、ページには何も反映されません。リロードでも。サーバーの再起動時のみ。

これが問題かどうかはわかりませんが、私は redux を使用しています。

webpack.config.js

var precss = require('precss');
var autoprefixer = require('autoprefixer');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
  devtool: 'eval-source-map',
  entry: __dirname + '/src/index.js',
  output: {
    path: __dirname + '/build',
    filename: 'bundle.js',
  },
  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: 'babel'
      },
      {
        test: /\.json$/,
        loader: 'json-loader'
      },
      {
        test: /\.css$/,
        loader: 'style!css?modules!postcss'
      },
      { 
        test: /\.(png|jpg|jpeg|gif|woff)$/, 
        loader: 'url-loader?limit=8192' 
      }
    ]
  },

  postcss: function() {
    return [autoprefixer, precss];
  },

  plugins: [
    new HtmlWebpackPlugin({
      template: __dirname + '/src/index.html'
    }),
    new webpack.HotModuleReplacementPlugin()
  ],

  devServer: {
    contentBase: './public',
    colors: true,
    historyApiFallback: true,
    inline: true,
    hot: true
  },

  jest: {
    moduleFileExtensions: ["js", "jsx"]
  }
};

.babelrc

{
  "presets": ["react", "es2015", "stage-0"],
  "env": {
    "development": {
      "plugins": [["react-transform", {
        "transforms": [{
          "transform": "react-transform-hmr",
          "imports": ["react"],
          // this is important for Webpack HMR:
          "locals": ["module"]
        }]
        // note: you can put more transforms into array
        // this is just one of them!
      }]]
    }
  }
}
4

2 に答える 2

0

webpack config にエントリ ポイントを追加すると、ページが自動的にリロードされますが、更新によりすべての状態が失われます。

entry: [
        'webpack-hot-middleware/client?reload=true',
         __dirname + '/src/index.js',
    ],

そしてサーバーjsで

app.use(require('webpack-hot-middleware')(compiler));
于 2016-07-29T11:13:44.467 に答える