1export async function resolve(specifier, context, next) { 2 const { url: first } = await next(specifier); 3 const { url: second } = await next(specifier); 4 5 return { 6 format: 'module', 7 url: first, 8 }; 9} 10