Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit a7689bf

Browse files
committed
fix: use shell for index.html
1 parent d2fbd55 commit a7689bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// Connect to server
3131
const protocol = (location.protocol === 'https:') ? 'wss://' : 'ws://';
3232
const port = location.port ? `:${location.port}` : '';
33-
const socket = new WebSocket(`${protocol}${location.hostname}${port}/interact${window.location.search}`);
33+
const socket = new WebSocket(`${protocol}${location.hostname}${port}/shell${window.location.search}`);
3434
socket.onopen = (ev) => { term.attach(socket); };
3535
</script>
3636
</body>

0 commit comments

Comments
 (0)