diff options
-rw-r--r-- | packages/astro/src/@types/astro.ts | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index fb623d8c2..9961d7a71 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -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 |