github-actions
released this
01 Sep 17:58
·
29 commits
to v1.x-2022-07
since this release
Patch Changes
-
Allow concatenating requests with a header. For example, if you want the route
/shop
to proxy render everything on/products
, setup an API route at/routes/shop.server.jsx
with the following: (#2536) by @blittleexport async function api(request) { return new Request(new URL(request.url).origin + '/products', { headers: { 'Hydrogen-Concatenate': 'true', }, }); }