@kody/vercel
scripts/kody-loader.mjs
9 lines · 251 B · JavaScriptexport async function resolve(specifier, context, nextResolve) {
if (specifier === 'kody:runtime') {
return {
url: new URL('./kody-runtime-mock.mjs', import.meta.url).href,
shortCircuit: true,
}
}
return nextResolve(specifier, context)
}