diff options
| author | Fuwn <[email protected]> | 2025-03-16 21:18:21 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-03-16 21:18:21 -0700 |
| commit | 96b9892dca0f6a5e8938562653931697d8508a5e (patch) | |
| tree | f242a5083196af738e7773ffdfda6f07302aa27a | |
| parent | 146b67a3fbffa480b4132fa7b6ccae339d47523f (diff) | |
| download | mayu-96b9892dca0f6a5e8938562653931697d8508a5e.tar.xz mayu-96b9892dca0f6a5e8938562653931697d8508a5e.zip | |
feat(index.html): Use absolute image source relative to local instance
| -rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -229,7 +229,7 @@ <div class="counter"> <img id="example" - src="https://mayu.due.moe/get/@demo" + src="/get/@demo" alt="Example counter" class="example-image" /> @@ -292,7 +292,7 @@ themeValue = themeSelect.value; } - image.src = `https://mayu.due.moe/get/@${inputValue}?theme=${themeValue}&padding=6`; + image.src = `/get/@${inputValue}?theme=${themeValue}&padding=6`; setCopyCodes(); }; |