We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f86ab commit 00f2656Copy full SHA for 00f2656
1 file changed
demo/index.html
@@ -34,7 +34,9 @@
34
</script>
35
<script type="module">
36
// get list of carts
37
- const carts = await fetch("carts/carts.txt")
+ const carts = await fetch(
38
+ "https://notnullgames.github.io/null0-api/carts/carts.txt",
39
+ )
40
.then((r) => r.text())
41
.then((t) => t.trim().split("\n"));
42
console.log(carts);
0 commit comments