webpack 4 aspnetcore 2.2 HMR无法在浏览器中重新加载

时间:2019-01-02 14:58:22

标签: asp.net-core webpack-hmr hot-module-replacement asp.net-core-2.2

我无法排除与aspnetcore 2.2和webpack 4的兼容性问题或最终的配置问题。

如果这是原因,我需要一些帮助来发现配置问题。

  • ASPNETCORE 2.2
  • WEBPACK 4

当我对“ .tsx”文件进行更改时,Visual Studio输出Webpack已经重建,但是浏览器没有刷新,并且控制台中没有消息。 (不过,我确实在浏览器控制台中收到了最初的 HMR已连接消息)。

Visual Studio输出

  

Microsoft.AspNetCore.NodeServices:信息:Webpack构建...   Microsoft.AspNetCore.NodeServices:信息:检查   在一个单独的过程中开始...

     

754ms Microsoft.AspNetCore.NodeServices:信息:内置Webpack   1e45bf5f88ad514f4a12 in 4940ms

     

编译成功。   开始HTTP / 1.1 GET https://localhost:44331/__webpack_hmr

webpack.config.js:

const path = require('path');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const CleanWebpackPlugin = require('clean-webpack-plugin'); 
const webpack = require('webpack');

module.exports = (env) => {
const isDevBuild = !(env && env.prod);

const outputDir = (env && env.publishDir)
    ? env.publishDir
    : __dirname;

return [{
    mode: isDevBuild ? 'development' : 'production',

    devtool: 'inline-source-map',

    stats: { modules: false },

    entry: { 'main': './client/boot.tsx' },

    watchOptions: {
        ignored: /node_modules/
    },

    output: {
        filename: "dist/[name].js",
        path: path.join(outputDir, 'wwwroot'),
        publicPath: '/'
    },

    resolve: {   
        extensions: [".ts", ".tsx", ".js", ".json"]
    },

    devServer: {
        hot: true
    },

    module: {
        rules: [
            // All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
            {
                test: /\.tsx?$/,
                include: /client/,
                loader: [
                    {
                        loader: 'awesome-typescript-loader',
                        options: {
                            useCache: true,
                            useBabel: true,
                            babelOptions: {
                                babelrc: false,
                                plugins: ['react-hot-loader/babel'],
                            }
                        }
                    }
                ]
            },
            { test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' }
        ]
    },

    plugins: [             
        new CleanWebpackPlugin(path.join(outputDir, 'wwwroot', 'dist')),
        new CheckerPlugin()       
    ]
}];

};

Startup.cs配置:

 if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
            app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions
            {
                HotModuleReplacement = true                 
            });
        }

package.json:

"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@types/history": "4.6.0",
"@types/jest": "^23.3.2",
"@types/node": "^10.9.1",
"@types/react": "^16.7.13",
"@types/react-dom": "16.0.11",
"@types/react-hot-loader": "3.0.3",
"@types/react-router": "4.4.1",
"@types/react-router-dom": "4.3.1",
"@types/webpack-env": "^1.13.6",
"aspnet-webpack": "^3.0.0",
"awesome-typescript-loader": "^5.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "*",
"clean-webpack-plugin": "^0.1.19",
"crypto-js": "^3.1.9-1",
"css-loader": "0.28.4",
"enzyme-to-json": "^3.3.4",
"event-source-polyfill": "0.0.9",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"file-saver": "^1.3.8",
"isomorphic-fetch": "2.2.1",
"jest": "^23.6.0",
"jquery": "^3.2.1",
"json-loader": "0.5.4",
"moment": "^2.22.2",
"raf": "^3.4.0",
"react": "^16.6.3",
"react-deep-force-update": "2.1.1",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.0.0",
"react-router-dom": "4.1.1",
"react-select": "^2.0.0",
"style-loader": "0.18.2",
"ts-jest": "^23.10.3",
"ts-loader": "^2.0.1",
"typescript": "^2.9.2",
"url-loader": "0.5.9",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"

编辑 :(添加boot.tsx和app.tsx以显示热模块加载情况)

boot.tsx

   import * as React from 'react';
   import { runWithAdal } from 'react-adal';
   import * as ReactDOM from 'react-dom';
   import App from './app';
   import { authContext } from './authentication/azure/azureConfig';

   const DO_NOT_LOGIN = false;

   function renderApp() {   

       ReactDOM.render(
    <App />,
    document.getElementById('react-app')
       ); 
   }

   runWithAdal(authContext, () => {  
       renderApp();
   }, DO_NOT_LOGIN);

app.tsx

   import * as React from 'react';
   import { hot } from 'react-hot-loader';
   import { Provider } from 'react-redux';
   import * as RoutesModule from './routes';
   import { BrowserRouter } from 'react-router-dom';
   import configureStore from './store/configureStore';

   let routes = RoutesModule.routes;

   const store = configureStore({});

   const baseUrl = 
   document.getElementsByTagName('base')[0].getAttribute('href')!;

   const App: React.SFC = () => <Provider store={store}>

;

   export default hot(module)(App);

1 个答案:

答案 0 :(得分:1)

根据上述配置,您正在将js文件打包到"wwwroot/dist/[name].js"中。 output信息表明Webpack热重装功能已正确设置。但是似乎Webpackindex页是什么一无所知。换句话说,对*.tsx模块所做的任何更改将仅重新加载已编译的wwwroot/dist/main.js文件。

例如,我创建一个App.tsx文件:

import * as React from "react";
import * as ReactDOM from 'react-dom';

export const App = () => <div>Hello World!</div>

并在App.tsx中渲染boot.tsx

import * as React from "react";
import * as ReactDOM from 'react-dom';  
import {App} from "./App";

ReactDOM.render(<App/>, document.getElementById("appconainer"));

当我通过MVCStaticFiles提供索引页,然后测试您的配置时,Webpack不会知道它应该请求home/index操作(或某些“ index.htm”网址)进行刷新。

一种可能的修复方法

由于已经安装了react-hot-loader软件包,一种方法是使用hot()函数将根组件转换为hot-exported

// file: `App.tsx`
import { hot } from 'react-hot-loader/root'

export const App = () => <div>Hello World!</div>

export const HotApp = hot(App);        // make it hot-exported!

并渲染hot-exported根组件:

// file: root.tsx
import * as React from "react";
import * as ReactDOM from 'react-dom';
import {HotApp} from "./App";         // use the Hot-Exported component as the root component

ReactDOM.render(<App/>, document.getElementById("appconainer"));

有关更多详细信息,请参见docs here