feat(frontend): Prettier, add openapi client generation

This commit is contained in:
2025-02-21 12:17:36 +01:00
parent d6effcd1d5
commit 31ff737221
20 changed files with 3840 additions and 4861 deletions

View File

@@ -5,20 +5,20 @@
</template>
<script setup lang="ts">
import type { NuxtError } from "#app";
import type { NuxtError } from '#app'
defineProps<{
error: NuxtError;
}>();
error: NuxtError
}>()
useSeoMeta({
title: "Page not found",
description: "We are sorry but this page could not be found.",
});
title: 'Page not found',
description: 'We are sorry but this page could not be found.'
})
useHead({
htmlAttrs: {
lang: "en",
},
});
lang: 'en'
}
})
</script>