1export async function resolve(specifier, context, next) {2 if (specifier === "server-only") return { url: new URL("./empty.mjs", import.meta.url).href, shortCircuit: true };3 return next(specifier, context);4}5