gpt4 book ai didi

asp.net-core - webpack 4 aspnetcore 2.2 HMR 未在浏览器中重新加载

转载 作者:行者123 更新时间:2023-12-01 16:23:59 25 4
gpt4 key购买 nike

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

我需要一些帮助来找出配置问题(如果这是原因)。

  • ASPNETCORE 2.2
  • WEBPACK 4

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

Visual Studio 输出:

Microsoft.AspNetCore.NodeServices:Information: webpack building... Microsoft.AspNetCore.NodeServices:Information: Checking started in a separate process...

754ms Microsoft.AspNetCore.NodeServices:Information: webpack built 1e45bf5f88ad514f4a12 in 4940ms

Compiled successfully. starting 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);

最佳答案

根据您的上述配置,您将 js 文件打包到 "wwwroot/dist/[name].js" 中。 output 信息表明 Webpack 热重载功能已正确设置。但似乎 Webpack 不知道 index 页面是什么。换句话说,对 *.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>

并在 boot.tsx 中渲染 App.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”url)进行刷新的请求。

可能的修复方法

由于您已经安装了 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!

并渲染热导出根组件:

// 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

关于asp.net-core - webpack 4 aspnetcore 2.2 HMR 未在浏览器中重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54008527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com