diff options
author | Simponic <loganhunt@simponic.xyz> | 2022-06-04 16:01:10 -0600 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2022-06-04 16:01:10 -0600 |
commit | f6871ced2774a88f5177421224e7ae2375404e61 (patch) | |
tree | a09c7eccb9ed8636a23cf8a7561658762d068908 /src/bootstrap.js | |
parent | 07a2c18985284431c18a619cfaa3f5681239dd48 (diff) | |
download | bbiy-prod.tar.gz bbiy-prod.zip |
Add prod branch for launching on simponic.xyzprod
Diffstat (limited to 'src/bootstrap.js')
-rw-r--r-- | src/bootstrap.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap.js b/src/bootstrap.js index 09e7ec5..b1e4d23 100644 --- a/src/bootstrap.js +++ b/src/bootstrap.js @@ -106,7 +106,7 @@ game.bootstrap = (() => { const loadLevels = function() { game.levels = []; - fetch('/levels') + fetch('levels') .then((r) => r.json()) .then((r) => game.levels = r); } |