Skip to content

@shopify/hydrogen@1.7.3

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Sep 17:58
· 27 commits to v1.x-2022-07 since this release
d12f40a

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 @blittle

    export async function api(request) {
      return new Request(new URL(request.url).origin + '/products', {
        headers: {
          'Hydrogen-Concatenate': 'true',
        },
      });
    }