'use strict' /** Stub: Node-only undici is not shipped in Bare standalone builds. */ module.exports = { Agent: class Agent { constructor() { throw new Error('undici is not available in Bare standalone builds') } }, fetch: globalThis.fetch, }