* Renovate the config files * Return Vue and TS ESLint plugins * Revert Prettier config Add typing to ESLint config Re-revert package.json * Re-add ESLint plugin for Prettier (it went missing during merge, oops) * Try to fix CI by explicit dependency * Try to fix CI by explicit dependency x2 * Try to fix CI magically Additionally, remove unneeded jsconfig.json * Brawaru found the reason Co-authored-by: Sasha Sorokin <10401817+brawaru@users.noreply.github.com> --------- Co-authored-by: Sasha Sorokin <10401817+brawaru@users.noreply.github.com>
12 lines
305 B
Vue
12 lines
305 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<ModrinthLoadingIndicator />
|
|
<Notifications />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import ModrinthLoadingIndicator from '~/components/ui/modrinth-loading-indicator'
|
|
import Notifications from '~/components/ui/Notifications.vue'
|
|
</script>
|