Skip to content

Commit 00f2656

Browse files
committed
working on web demo
1 parent d4f86ab commit 00f2656

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

demo/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@
3434
</script>
3535
<script type="module">
3636
// get list of carts
37-
const carts = await fetch("carts/carts.txt")
37+
const carts = await fetch(
38+
"https://notnullgames.github.io/null0-api/carts/carts.txt",
39+
)
3840
.then((r) => r.text())
3941
.then((t) => t.trim().split("\n"));
4042
console.log(carts);

0 commit comments

Comments
 (0)