You've already forked AstralRinth
forked from didirus/AstralRinth
18 lines
513 B
TypeScript
18 lines
513 B
TypeScript
import type { Labrinth } from '@modrinth/api-client'
|
|
|
|
export default defineNuxtPlugin(async () => {
|
|
try {
|
|
const gameVersions = await $fetch<Labrinth.Tags.v2.GameVersion[]>('/api/tags/game-versions')
|
|
|
|
if (gameVersions && gameVersions.length > 0) {
|
|
const state = useState<{ gameVersions: Labrinth.Tags.v2.GameVersion[] }>('generatedState')
|
|
|
|
if (state.value) {
|
|
state.value.gameVersions = gameVersions
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error('[Game Version Updater] Failed to fetch:', error)
|
|
}
|
|
})
|