Matt Kane
Matt Kane
### Summary Rather than including API routes in the SSR function, this splits them into individual functions per route. This makes them smaller, easier to track in the UI, and...
If a user opts-in to edge runtime for SSR or API routes, we should take that as tacit opt-in to use edge functions too. Unlike middleware we won't have any...
Currently, Netlify rewrites that point at a Next page fail, because rewrites can't be "stacked". To handle this we should parse user rewrites onPreBuild, find the ones that eventually point...
It needs to be clearer that when sourcing local data you need to add it to `included_files`. See #1252 for an example.
As the local functions server now proxies to the gatsby develop server, our wrapper functions are no longer being fully tested. We should add tests where we run `ntl deploy...
Currently the latest version of the plugin [requires Gatsby 4](https://github.com/netlify/plugins/blob/main/site/plugins.json#L515), but there's nothing specific that demands this. We should test this with Gatsby 3 and Gatsby 2 to ensure that...
We currently include the Gatsby lmdb datastore (data.mdb) in the lambda bundle, then move it into the tmp dir at first run, because it needs to be in a writeable...
We try to fail the build when the root dir is set as the publish dir. However according to BugSnag quite a few seem to be slipping through, and it...
If an the build command is set to `gatsby-runner`, then add the support for the image handling: - [ ] Detect `gatsby-runner` in the build script or build command -...