Replies: 1 comment 1 reply
-
Hi!
Might be worth adding your case to it? :)
P.S.: Thanks for helping people out here in the discussions with their questions! 💜 |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
I just upgraded to Gatsby v3 in a project. I also upgraded all plugins to their next major version.
Just two things made problems. I managed to get rid of 1, but have no clue how to get rid of 2.
Does anybody have an idea what's the reason for 2? The same setup worked with
DEV_SSR
active andgatsby@^2.32.0
just before I upgraded. If I disableDEV_SSR
, everything works fine.1. Missing polyfill with Webpack 5
Some parser combinator lib I use seems to need a polyfill for
process
, which apparently is not added with Webpack 5 anymore. I solved this by using thenode-polyfill-webpack-plugin
for convenience until I understand that part better.2. Development server crash when navigating to home page with
DEV_SSR
activeBeta Was this translation helpful? Give feedback.
All reactions