sunset-racing-ultracode / test /three-loader.mjs
Mike0021's picture
Fix driving camera jolts, DPR oscillation, and shadow crawl
1139202 verified
Raw
History Blame Contribute Delete
292 Bytes
// 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);
}