Replies: 2 comments 2 replies
-
Interesting idea! |
Beta Was this translation helpful? Give feedback.
2 replies
-
I dug into this a little more and it appears that Because |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Some of my dependencies have separate entry points depending on whether the are being used on node or in the browser.
It looks like
esinstall
is originally just using the browser version (see #2214).What would be awesome for my case, is that if dependencies were loaded depending on the current
isSSR
flag for the request. IfisSSR === true
then use the node entry points (module
,main
), otherwise the userbrowser
entry points (falling back tomodule
,main
if browser entry doesn't exist)Beta Was this translation helpful? Give feedback.
All reactions