File size: 292 Bytes
1139202 | 1 2 3 4 5 6 7 8 | // ESM resolve hook: map the bare 'three' specifier to the local stub.
export async function resolve(specifier, context, next) {
if (specifier === 'three') {
return { url: new URL('./three-stub.mjs', import.meta.url).href, shortCircuit: true };
}
return next(specifier, context);
}
|