The organization of this src
folder is as follows:
src/pages
is a "special" folder that Gatsby will turn into static pages.src/app
is not "special", it is re-exported bysrc/pages/app.js
and contains all the clientside dynamic App pages that we dont want to be statically generated.src/pages/app.js
skips the static generation process because ofgatsby-plugin-create-client-paths
configured ingatsby-config.js
src/components
is not "special", it contains components for the static marketing site.src/images
is "special", it contains images for the static marketing site that are ingested bygatsby-source-filesystem
ingatsby-config.js
and processed bygatsby-transformer-sharp
andgatsby-plugin-sharp