編集

Astro 3.5: i18n Routing

2023 年 11 月 8 日に Astro 3.5 がリリースされました。

https://astro.build/blog/astro-350/

実験的な機能として多言語対応を行える i18n Routing API が追加されました。この機能を有効化するとAstro.preferredLocaleAstro.preferredLocaleList が利用できるようになります。

jsx
// astro.config.mjs
import { defineConfig } from "astro/config";

export default defineConfig({
  experimental: {
    i18n: {
      defaultLocale: "en",
      locales: ["en", "es", "pt-br"],
    },
  },
});

他、プリフェッチのオプトイン機能化や、Qwik のサポートなどが入っています。

編集