-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
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
[ HW | ISSUE ]: webpack build successful, but RemoteComponent giving issues #52
Comments
Some more info on this:
and
|
Are you using |
nope, i dont... |
Ok it appears Webpack 5 has a BREAKING CHANGE. I am guessing create-react-app 5 switched to Webpack 5.
So there are a few (not so great) options.
Not sure how long it will take for the upgrade. Still need to do some testing and the change I am thinking of will also create a breaking change in the remote-component. |
Ok. Got it. Wishing you best to upgrade it. And waiting for new version. |
Hi, I starting facing same problem in ionic app. is there any update on upgrading the |
Hi @joelnet, The root cause of the problem with webpack 5 is one of the dependency Packages like If we are no longer interested in supporting old node versions below 17.5 and old IE, we can use the newly introduced For anyone who want to stay with webpack 5 and does not eject, you can use |
While
I've been using module.exports = {
webpack: {
configure: {
resolve: {
fallback: {
"http": false,
"https": false
},
},
},
},
}; And @maheshnaidusyyadri, about ionic, with the above craco configuration, it is able to load remote components. However, I wasn't able to add more external libraries. To work it out and for more convenient, I forked the |
On react building i have this error
What is my option here? I just want simply to load a webpack bundle from server...
The text was updated successfully, but these errors were encountered: