3.6.4

🐞 Patch Changes

  • #9226 8f8a40e93 Thanks @outofambit! - Fix i18n fallback routing with routing strategy of always-prefix

  • #9179 3f28336d9 Thanks @lilnasy! - Fixes an issue where the presence of a slot in a page led to an error.

  • #9219 067a65f5b Thanks @natemoo-re! - Fix edge case where <style> updates inside of .astro files would ocassionally fail to update without reloading the page.

  • #9236 27d3e86e4 Thanks @ematipico! - The configuration i18n.routingStrategy has been replaced with an object called routing.

    export default defineConfig({
    experimental: {
    i18n: {
    routingStrategy: "prefix-always",
    routing: {
    prefixDefaultLocale: true,
    }
    }
    }
    })
    export default defineConfig({
    experimental: {
    i18n: {
    routingStrategy: "prefix-other-locales",
    routing: {
    prefixDefaultLocale: false,
    }
    }
    }
    })