请教`Webpack`打包后找不到资源? 入口文件如下: const Fiexd = lazy(() => import('./Fiexd')); const ZoomFiexd: FC> = ({ children }) => ( {children} ); export { ZoomFiexd }; export default ({ children }: PropsWithChildren) => { return ( {children} ); }; 打包在`lib`目录,如下: 874.index_bundle.js 874.index_bundle.js.map index_bundle.js index_bundle.js.LICENSE.txt index_bundle.js.map 入口文件`index_bundle.js`在`package.json`中设置`main`指向`./lib/index_bundle.js`就好了 但是`874.index_bundle.js`这个文件就找不到了,提示如下 ERROR Loading chunk 874 failed. (error: http://localhost:8686/874.index_bundle.js) ChunkLoadError: Loading chunk 874 failed. 于是我去查了下,说是要设置`homepage` * 但是无论我是设置`./lib/`还是设置`.`,都不对 * 于是我想是不是要将`homepage`指向`./lib/`,`main`入口指向`index_bundle.js`,还是不对 请问这个要怎么配置?