From 4a926a4d0baa8ba8c234dfad7153a0275e06050b Mon Sep 17 00:00:00 2001 From: Dani H Date: Mon, 2 Feb 2026 17:10:05 +0100 Subject: [PATCH] Fix: i18n not available --- src/pages/index.astro | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index a25049c..aa37d48 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,16 +1,18 @@ --- import { i18n } from 'astro:config/client' import IndexPage from '../components/index.astro' + +const locales = i18n.locales +const defaultLocale = i18n.defaultLocale --- -