refactor: use external registry url and remove legacy scripts

This commit is contained in:
dyzulk
2026-01-18 18:23:32 +07:00
parent 1661fa17ee
commit eb9627c54f
4 changed files with 19 additions and 226 deletions

View File

@@ -15,7 +15,7 @@ const formatSize = (bytes) => {
onMounted(async () => {
try {
const res = await fetch('/releases.json')
const res = await fetch('https://mivodev.github.io/registry/releases.json')
if (!res.ok) throw new Error('Failed to load releases')
releases.value = await res.json()
} catch (e) {