diff --git a/pages/api/bundlejs.ts b/pages/api/bundlejs.ts index dfa6b313..d44b8bea 100644 --- a/pages/api/bundlejs.ts +++ b/pages/api/bundlejs.ts @@ -9,10 +9,11 @@ export default createBadgenHandler({ '/bundlejs/min/react': 'minified', '/bundlejs/minzip/react': 'minified + gzip', '/bundlejs/minzip/@noble/hashes': '(scoped pkg) minified + gzip', + '/bundlejs/minzip/@noble/hashes/sha3.js': '(scoped pkg) minified + gzip (sub-path)', }, handlers: { - '/bundlejs/:topic/:scope<@.*>/:name': handler, - '/bundlejs/:topic/:name': handler, + '/bundlejs/:topic/:scope<@.*>/:name+': handler, + '/bundlejs/:topic/:name+': handler, } })