Given that gatsby develop isn't really producing html output (other than blank html so runtime can mount react app) we can fix gatsby develop by just providing mocked / empty stats file (so gatsby-ssr keep working, tho not doing anything). For builds, build-javascript will continue to produce stats file and build-html that happens next can read and use it
Given that
gatsby develop
isn't really producing html output (other than blank html so runtime can mount react app) we can fixgatsby develop
by just providing mocked / empty stats file (sogatsby-ssr
keep working, tho not doing anything). For builds,build-javascript
will continue to produce stats file andbuild-html
that happens next can read and use itFixes #48