diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 21e8425802..82f4977a20 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1955,7 +1955,7 @@ export interface AstroUserConfig { * In the event of route collisions, where two routes of equal route priority attempt to build the same URL, Astro will log a warning identifying the conflicting routes. */ globalRoutePriority?: boolean; - + /** * @docs * @name experimental.security diff --git a/packages/astro/test/units/i18n/astro_i18n.test.js b/packages/astro/test/units/i18n/astro_i18n.test.js index b563f9ba26..c53d437487 100644 --- a/packages/astro/test/units/i18n/astro_i18n.test.js +++ b/packages/astro/test/units/i18n/astro_i18n.test.js @@ -1548,7 +1548,7 @@ describe('getLocaleAbsoluteUrlList', () => { const config = await validateConfig( { format: 'directory', - output: "server", + output: 'server', site: 'https://example.com/', trailingSlash: 'always', i18n: { @@ -1588,17 +1588,17 @@ describe('getLocaleAbsoluteUrlList', () => { * @type {import("../../../dist/@types").AstroUserConfig} */ const config = { - i18n: { - defaultLocale: 'en', - locales: [ - 'en', - 'en_US', - 'es', - { - path: 'italiano', - codes: ['it', 'it-VA'], - }, - ], + i18n: { + defaultLocale: 'en', + locales: [ + 'en', + 'en_US', + 'es', + { + path: 'italiano', + codes: ['it', 'it-VA'], + }, + ], }, }; // directory format