Add caddy and clean up build

This commit is contained in:
2026-09-10 11:20:46 +02:00
parent 443a7c483a
commit d6cb4078bc
9 changed files with 49 additions and 57 deletions
+8 -4
View File
@@ -1,13 +1,17 @@
<template>
<LanguageSwitcher />
{{ t('app.hello') }}
<RouterView />
<p>
{{ t('app.hello') }}
</p>
<Suspense>
<RouterView />
</Suspense>
</template>
<script setup>
import { useI18n } from 'vue-i18n'
import LanguageSwitcher from '@/components/LanguageSwitcher.vue'
const { t } = useI18n()
const { t } = useI18n();
</script>