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
Follow Docs: https://lynxjs.org/react/code-splitting.html#lazy-loading-standalone-project
If we build a standalone Producer project and use in another customer, will got following error:
The root issue is that when using minify: true, main-thread.js is not minified correctly on the lazy bundle.
minify: true
The text was updated successfully, but these errors were encountered:
It seems globDynamicComponentEntry is not minified correctly:
globDynamicComponentEntry
After minify, it is _=_||"__Card__", which will always be __Card__
_=_||"__Card__"
__Card__
Sorry, something went wrong.
Problem can be simply fixed by rename function param to globDynamicComponentEntry1:
globDynamicComponentEntry1
Should have been fixed by #177
upupming
No branches or pull requests
Follow Docs: https://lynxjs.org/react/code-splitting.html#lazy-loading-standalone-project
If we build a standalone Producer project and use in another customer, will got following error:
The root issue is that when using
minify: true
, main-thread.js is not minified correctly on the lazy bundle.The text was updated successfully, but these errors were encountered: