-
Notifications
You must be signed in to change notification settings - Fork 87
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
dynamic imports break when using esbuild #337
Comments
@l3aconator hello again kyle! can you downgrade next for the timebeing? and also let me know the last version of next where this was working for you? |
and also a repo please 🙏 i know you gave a sample page but due to little bandwidth, being able to fork and clone something that reliably reproduces is fastest/super helpful 🙏 🙏 |
Howdy! I'll try get to that this weekend, it will have to be very minimal though to avoid leaking any internal info. Thanks to y'all for this great deploy mechanism, btw. ❤️ |
Almost done with the reproduction repo, it has taken way longer to rip things out. |
@lindsaylevine I will DM you the repo link, we are being a little security conscious. Here is the deployment: I am also assuming this API route is related as well: https://cranky-benz-061546.netlify.app/api/blog/feed If you make your own netlify deployment, only env var is the |
@l3aconator yo kyle! we've discovered that dynamic imports break in sites using |
@lindsaylevine Ah got it, no prob I have a few future tasks blocked, but def running okay in production since 95% of the site is static at this point. I def love |
I saw zip-it-and-ship-it deployed out the dynamic imports today. (Hell yeah and thank you!) As with any compliment sandwich, I am now getting the following on deploys:
|
@l3aconator hey kyle! i pinged @eduardoboucas who took care of the zisi imports work :). he'll take a look soon! thanks for letting us know 🙏 |
I'm still seeing a ton of errors when switching to
but the site seems functional at a glance. Happy to take this to a new issue if this is diverging too far here. |
Sorry to be a pest, 😬 any updates on this? |
@l3aconator wait. OMG. YES. KYLE. thanks for commenting on this. @eduardoboucas JUST pinged us about support for this under a feature flag this morning and i only commented on a more recent issue to suggest they test it out. how'd i forget about this one!? if you don't mind, i'm going to change the title to reflect that it's esbuild-related. to enable the flag, add |
@chris-erickson hey, sorry i missed your comment! i'll ping about your use case as well, and i'll let yk if we should move to a new issue. |
@lindsaylevine Hell yeah! https://60dcb42e809a1d769570b772--ts-marketing.netlify.app/teamlink-thank-you-3 is rendering. and the underlying POST -> GET redirect works. Thanks for all of the hard work on your team + you! |
awesome!! we'll leave this open til it's officially out for everyone then :) |
Hey guys, I had this same issue too. It got fixed when I changed my next.config.js target from That was of course after I did a lot of the other things above in this thread |
Describe the bug
I am using
"@netlify/plugin-nextjs": "3.3.0"
and"next": "10.2.2"
withwebpack5
. I have a thank you page that is forced to accept aPOST
request from Salesforce Pardot using getServerSideProps. They don't send back a typical redirect but rather a POST request. This was working fine until the latest@netlify/plugin-nextjs
. See error at the link below.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Returns our thank you page (we redirect it to a GET request so the pages does not render a 404 page)
https://teamsnap.com/teamlink-thank-you-2
Versions
"next": "10.2.2"
"@netlify/plugin-nextjs": "3.3.0"
Here's a minimal next.js page that we use:
The text was updated successfully, but these errors were encountered: