chore: add wrangler dependency to package.json

This commit is contained in:
2025-10-03 20:32:05 +02:00
parent 22c93c509d
commit 48e6043205
32 changed files with 182 additions and 32 deletions

View File

@@ -10,7 +10,7 @@ const { messages } = useChatStore()
const parents = useTemplateRef('parents')
const { height } = useElementBounding(parents)
const { locale } = useI18n()
const { locale } = useI18n({ useScope: 'global' })
const lastLang = ref(locale.value)
watch(
height,

View File

@@ -18,7 +18,7 @@ useSeoMeta({
author: 'Arthur Danjou',
})
const { t } = useI18n()
const { t } = useI18n({ useScope: 'global' })
useSeoMeta(project.value.seo || {})
</script>

View File

@@ -1,5 +1,5 @@
<script lang="ts" setup>
const { t } = useI18n()
const { t } = useI18n({ useScope: 'global' })
useSeoMeta({
title: 'My Projects',
description: t('projects.description'),

View File

@@ -12,7 +12,7 @@ if (!writing.value) {
})
}
const { t } = useI18n()
const { t } = useI18n({ useScope: 'global' })
useSeoMeta(writing.value.seo || {})
</script>

View File

@@ -1,5 +1,5 @@
<script lang="ts" setup>
const { t } = useI18n()
const { t } = useI18n({ useScope: 'global' })
useSeoMeta({
title: 'My Shelf - Arthur DANJOU',
description: t('writings.description'),