From 02af30c749c39eb64933baca25e26f92f6e7a2d9 Mon Sep 17 00:00:00 2001 From: thuanbui Date: Tue, 10 Mar 2026 12:57:13 +0900 Subject: [PATCH] Update i18n configuration to set default locale to Vietnamese and adjust supported locales --- astro.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index a00a786..1b024d4 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -20,8 +20,8 @@ export default defineConfig({ ], }, i18n: { - defaultLocale: "en", - locales: ["en", "es"], + defaultLocale: "vi", + locales: ["vi", "en"], routing: { prefixDefaultLocale: false, },