0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

Move i18n config above legacy (#9318)

This commit is contained in:
Reuben Tier 2023-12-05 15:52:52 +00:00 committed by GitHub
parent 933f9f274d
commit eb584de1f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1359,17 +1359,7 @@ export interface AstroUserConfig {
/**
* @docs
* @kind heading
* @name Legacy Flags
* @description
* To help some users migrate between versions of Astro, we occasionally introduce `legacy` flags.
* These flags allow you to opt in to some deprecated or otherwise outdated behavior of Astro
* in the latest version, so that you can continue to upgrade and take advantage of new Astro releases.
*/
legacy?: object;
/**
* @docs
* @kind heading
* @name i18n
* @type {object}
* @version 3.5.0
@ -1480,6 +1470,17 @@ export interface AstroUserConfig {
};
};
/**
* @docs
* @kind heading
* @name Legacy Flags
* @description
* To help some users migrate between versions of Astro, we occasionally introduce `legacy` flags.
* These flags allow you to opt in to some deprecated or otherwise outdated behavior of Astro
* in the latest version, so that you can continue to upgrade and take advantage of new Astro releases.
*/
legacy?: object;
/**
* @docs
* @kind heading