We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8f8889 commit c3c3205Copy full SHA for c3c3205
src/tracers/js/JsTracer.ts
@@ -20,7 +20,7 @@ export class JsTracer extends Tracer {
20
router.get(`/${this.lang}`, (req, res) => {
21
if (!this.tagName) throw new Error('JsTracer has not been built yet.');
22
const version = this.tagName.slice(1);
23
- res.redirect(`https://unpkg.com/algorithm-visualizer@${version}/dist/index.umd.js`);
+ res.redirect(`https://unpkg.com/algorithm-visualizer@${version}/dist/algorithm-visualizer.umd.js`);
24
});
25
router.get(`/${this.lang}/worker`, (req, res) => res.sendFile(this.workerPath));
26
}
0 commit comments