1export async function load(url, context, next) {
2  return next(url, {
3    ...context,
4    foo: 'bar',
5  });
6}
7