We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
id like to track compatibility on firefox
tl:dr on react-18-ssr firefox does timeout until the infamous remote script loading error appears: (you can stop loading site, to speed it up)
react-18-ssr
ScriptExternalLoadError: Loading script failed. (error: http://localhost:3001/client/remoteEntry.js) while loading "./Content" from 9223 9223 remoteEntry.js":1
git clone https://github.com/module-federation/module-federation-examples.git cd module-federation-examples/react-18-ssr yarn yarn start
!important!
running the app's from vscode terminal will not work. it has to be run from the os terminal
ps.:
The text was updated successfully, but these errors were encountered:
i tried:
webpack.shared.js
remote1
remote2
shell
optimization: { splitChunks: { chunks: 'async', minSize: 30000, minRemainingSize: 0, maxSize: 0, minChunks: 1, maxAsyncRequests: 6, maxInitialRequests: 4, automaticNameDelimiter: '~', cacheGroups: { vendors: { test: /[\\/]node_modules[\\/]/, priority: -10 }, common: { name: `chunk-common`, minChunks: 3, enforce: true, priority: -20, chunks: 'async', reuseExistingChunk: true, test(module) { if ( module.type === 'provide-module' || module.type === 'consume-shared-module' || module.type === 'remote-module' ) { return false; } return true; } } } } }
alternating the publicPath between 'auto' and static path as in 'http://localhost:3000/client' aswell on all the containers
disable runtimeChunks on shared.webpack.js
shared.webpack.js
optimization: { runtimeChunks: false }
Sorry, something went wrong.
awww yiiis 💯
No branches or pull requests
id like to track compatibility on firefox
tl:dr
on
react-18-ssr
firefox does timeout until the infamous remote script loading error appears:(you can stop loading site, to speed it up)
repro
git clone https://github.com/module-federation/module-federation-examples.git cd module-federation-examples/react-18-ssr yarn yarn start
!important!
ps.:
related issues:
The text was updated successfully, but these errors were encountered: