您的位置:首页技术文章
文章详情页

javascript - webpack-dev-server 没有做到实时刷新,为什么

【字号: 日期:2023-09-14 14:36:22浏览:24作者:猪猪

问题描述

npm start 的时候打开 http://localhost:8080/ 修改js文件 并没有做到实时刷新为什么?换了端口还是一样, 没有实时刷新 手动刷新也没有变化

目录结构

javascript - webpack-dev-server 没有做到实时刷新,为什么

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' }}

已解决

//修改//publicPath: ’./dist’ => publicPath: ’/dist’

问题解答

回答1:

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

回答2:

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

标签: JavaScript
相关文章: