Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Emmett 6e3d9ef900 Merge branch 'dev'
CI/CD / deploy (push) Failing after 2m2s Details
2026-04-15 16:58:06 -04:00
Jeff Emmett b2c2faee76 fix(rcred): correct script path — /modules/ not /dist/modules/
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 <noreply@anthropic.com>
2026-04-15 16:57:59 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ routes.get('/', (c) => {
moduleId: 'rcred',
modules: getModuleInfoList(),
body: `<folk-cred-dashboard space="${space || 'demo'}"></folk-cred-dashboard>`,
scripts: '<script type="module" src="/dist/modules/rcred/folk-cred-dashboard.js"></script>',
scripts: '<script type="module" src="/modules/rcred/folk-cred-dashboard.js"></script>',
}),
);
});