-
Notifications
You must be signed in to change notification settings - Fork 371
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
CommonJS build breaks with NextJS #59
Comments
After a bunch of investigations I'm sure the issue is caused because of the commonjs output while using esm dependencies such as lodash-es. So a temporary solution is to force NextJS to read theatre as commonjs and not as an ESM library. (which will affect all the other libs)
|
I've done some work to resolve issues with Theatre in NextJS. Please try out the |
Closing as resolved. |
If I try to use theatre on NextJS I randomly get following error:
The error happened to other developers in my company, and with a different setup of NextJS.
If I understand right, lodash-es is an ES module library and theatre output is a CommonJS build. So there is a clash between commonjs and esm?
I suppose a solution could be to use
type="module"
instead oftype="commonjs"
? Or change the configuration of the compiler to generates dynamic import() instead of require() ?Is there any reason why you chose CommonJS instead of an ESM build?
FYI we use lodash-es as a dependency in our project
The text was updated successfully, but these errors were encountered: