From b2c2faee767eb4e3388dc1f6db2c070aaf351189 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 15 Apr 2026 16:57:59 -0400 Subject: [PATCH] =?UTF-8?q?fix(rcred):=20correct=20script=20path=20?= =?UTF-8?q?=E2=80=94=20/modules/=20not=20/dist/modules/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit serveStatic resolves relative to dist/, so /dist/modules/ doubled the prefix and 404'd. All other modules use /modules/rcred/file.js. Co-Authored-By: Claude Opus 4.6 --- modules/rcred/mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rcred/mod.ts b/modules/rcred/mod.ts index 8a34d883..e33d5a62 100644 --- a/modules/rcred/mod.ts +++ b/modules/rcred/mod.ts @@ -38,7 +38,7 @@ routes.get('/', (c) => { moduleId: 'rcred', modules: getModuleInfoList(), body: ``, - scripts: '', + scripts: '', }), ); });