[React ssr via functions]Unexpected token error

I think you’re seeing a case sensitivity issue here, @ARose. On a Mac or Windows machine, “…/src/App” is the same as “…/src/app” and “…/SRC/ApP” but not in our build environment, as described in more detail here:

This line in particular is probably the problem:

import App from '../src/App'; since that is looking for a capitalized file and I bet it is not capitalized in git. We recommend standardizing on lowercase!