未处理的拒绝 (ChunkLoadError):加载块 1 失败

IT技术 reactjs webpack webpack-dev-server git-submodules react-loadable
2021-04-27 23:06:44

我基本上是poc尝试将我的主应用程序的某些部分提取到一个单独的包中。我在我的 git repo myapp-poc-ui 中构建了一个示例单独包

现在我试图在我的 main application.
package.json :

 "dependencies": {
    "myapp-poc-ui": "git+https://github.com/prabhatmishra33/myapp-poc-ui#master",
    "react": "^16.10.1",
    "react-dom": "^16.10.1",
    "react-scripts": "3.2.0"
  },

我正在通过以下方式访问主应用程序中的导出module:

import React from 'react';
import './App.css';
import { HelloWorld } from "myapp-poc-ui";
import { LazyComponent } from "myapp-poc-ui";

function App() {
  return (
    <div>
      <HelloWorld />
      <LazyComponent />
    </div>
  );
}

export default App;

问题:我的浏览器出现问题

Uncaught SyntaxError: Unexpected token '<'
Uncaught (in promise) ChunkLoadError: Loading chunk 1 failed.

Hello World已正确加载,但在加载LazyComponent.

我猜有什么不对webpack config file publicPath propertymyapp-poc-ui

也欢迎任何设计更改建议。

提前致谢。

1个回答

所以问题来了,每当 myapp-poc-ui 构建时,它都会创建

  1. 主入口文件
  2. 其余都是块文件

除非应用程序呈现,否则块文件不会在构建中自动加载。应用程序渲染后,它会调用块文件通过网络加载。您的客户端应用程序需要在本地服务器上的 public 或 dist 文件夹中包含该块文件,除非我们将其从节点module复制到 public,否则它无法自动获取块文件。

您的module已经创建了块,但客户端应用程序在创建客户端构建时不会自动加载/复制文件,如果我们将文件调用作为 myapp-poc-ui 的一部分,那么它就违背了使用延迟加载的目的. 因此,一种方法是将节点文件复制到您的服务文件夹或构建文件夹中。

// i am using create-react-app as client and used react-app-rewired to 
// overide cra webpack in config-overrides.js

const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = function override(config, env) {
    //do stuff with the webpack config...
    config.plugins = [
        new CopyWebpackPlugin([
            {
                context: 'node_modules/myapp-poc-ui/dist/',
                from: '*', to: '[name].[ext]',  toType: 'template',
            },
        ]),
        ...config.plugins,
    ];
    console.log(config)
    return config;
}

快乐编码:)