and https://esm.sh/stable/preact@10.23.2/esnext/hooks.js starts with import{options as V}from"/stable/preact@10.23.2/esnext/preact.mjs";
My understanding from the esm.sh docs was that the "*" at the start of the package name was supposed to make all references external so they would be resolved by import maps.
Failing module
Loading from the url
https://esm.sh/*preact/hooks
with curl, I get redirected tohttps://esm.sh/*preact@10.23.2/hooks
, which looks likeand
https://esm.sh/stable/preact@10.23.2/esnext/hooks.js
starts withimport{options as V}from"/stable/preact@10.23.2/esnext/preact.mjs";
My understanding from the esm.sh docs was that the "
*
" at the start of the package name was supposed to make all references external so they would be resolved by import maps.