suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Webpack-Dev-Server wird nicht in Echtzeit aktualisiert, warum?

Öffnen Sie beim Start von npm http://localhost:8080/ und ändern Sie die js-Datei. Warum wird sie nicht in Echtzeit aktualisiert?
Der Port ist immer noch derselbe, es gibt keine Echtzeitaktualisierung und es gibt keine Änderung nach der manuellen Aktualisierung

Verzeichnisstruktur

webpack.config.js

const path = require('path');
const webpack = require("webpack");

module.exports = {
    entry: './src/index.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'foo.bundle.js',
        publicPath: './dist'
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                loader: 'babel-loader',
                exclude: /node_modules/
            }
        ]
    },
    devServer: {
        contentBase: "./",
        historyApiFallback: true,
        hot:true,
        inline: true // 实时刷新
    },
    plugins: [
        new webpack.HotModuleReplacementPlugin()
    ]
};

package.json

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "webpack-dev-server"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel-core": "^6.24.1",
    "babel-loader": "^7.0.0",
    "babel-preset-es2015": "^6.24.1",
    "css-loader": "^0.28.0",
    "webpack": "^2.4.1",
    "webpack-dev-server": "^2.4.4"
  }
}

Gelöst

//修改
//publicPath: './dist' =>  publicPath: '/dist'
某草草某草草2806 Tage vor661

Antworte allen(2)Ich werde antworten

  • 为情所困

    为情所困2017-05-16 13:41:51

    publicPath 路径问题,把点去掉/dist,或使用绝对路径publicPath: 'http://127.0.0.1:8080/examples/build

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-05-16 13:41:51

    没有刷新还是没有实时刷新?有没有启用nginx反向代理?

    Antwort
    0
  • StornierenAntwort