You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
having a package that ends with "react" (@remix-run/react) in this case
causes import_react to be redeclared and pointing to both "react" and "@remix-run/react" which causes react to throw due to the lovely Element type is invalid error
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
varimport_stream=require("stream"),import_node=require("@remix-run/node"),import_react=require("@remix-run/react"),import_server=require("react-dom/server"),import_jsx_dev_runtime=require("react/jsx-dev-runtime"),ABORT_DELAY=5e3;// later on in the same file...varimport_react3=require("@remix-run/react"),import_jsx_dev_runtime=require("react/jsx-dev-runtime"),import_react=require("react")
key={blah}
causes
import_react
to be redeclared and pointing to both "react" and "@remix-run/react" which causes react to throw due to the lovelyElement type is invalid
errorsample code: https://github.com/mcansh/remix-borked
the following is a sample of the build output:
for good measure, here is our current esbuild config for our server builds: https://github.com/remix-run/remix/blob/7730e653db3d6b531cfffd835d5f8b9bf6b22053/packages/remix-dev/compiler.ts#L428-L475
The text was updated successfully, but these errors were encountered: