diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-21 22:54:15 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-21 22:54:15 +0200 |
| commit | b4ef1a0d288565f744bf754af456c4f60da99ca7 (patch) | |
| tree | 907c88a2e59370a0b06dbd60aa1cc297b67b004b /astro.config.mjs | |
| parent | e96af5ce5e8dd00cf8a31d4812f416583defa449 (diff) | |
Refactor localization: remove i18n support and update layouts to use static text
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 523b075..19df8a3 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -2,22 +2,12 @@ import sitemap from "@astrojs/sitemap"; import { defineConfig } from "astro/config"; import mdx from "@astrojs/mdx"; -import { DEFAULT_LANGUAGE, LANGUAGE_CODES } from "./src/i18n"; import icon from "astro-icon"; export default defineConfig({ compressHTML: true, site: "https://www.costas.dev", - i18n: { - defaultLocale: DEFAULT_LANGUAGE, - locales: LANGUAGE_CODES, - routing: { - prefixDefaultLocale: false, - fallbackType: "redirect", - redirectToDefaultLocale: true, - }, - }, integrations: [ sitemap({ priority: 0.5, |
