add translation support
Some checks are pending
Deploy to Pages / Build (push) Waiting to run
Deploy to Pages / Deploy (push) Blocked by required conditions

This commit is contained in:
Henry Hiles 2025-09-16 18:38:00 -04:00
commit fac33f23b8
No known key found for this signature in database
2 changed files with 23 additions and 0 deletions

View file

@ -25,6 +25,29 @@ export default defineConfig({
href: "https://wetdry.world/@QuadRadical", href: "https://wetdry.world/@QuadRadical",
}, },
], ],
defaultLocale: "root",
locales: {
root: {
label: "English",
lang: "en",
},
"fr-fr": {
label: "Français",
lang: "fr-FR",
},
"uk-ua": {
label: "Українська",
lang: "uk-UA",
},
"ru-ru": {
label: "Русский",
lang: "ru-RU",
},
},
}), }),
], ],
image: { service: passthroughImageService() }, image: { service: passthroughImageService() },

View file