From a888e985384918798e7c2f203e0dee48a4a21225 Mon Sep 17 00:00:00 2001 From: sarah11918 Date: Thu, 9 Nov 2023 20:21:12 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/@types/astro.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index c5a74340a4..e26fd11b93 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1450,7 +1450,7 @@ export interface AstroUserConfig { * @description * * Configures experimental i18n routing and allows you to specify some customization options. - * + * * See our guide for more information on [internationalization in Astro](/en/guides/internationalization/) */ i18n?: { @@ -1462,7 +1462,7 @@ export interface AstroUserConfig { * @description * * The default locale of your website/application. This is a required field. - * + * * No particular language format or syntax is enforced, but we suggest using lower-case and hyphens as needed (e.g. "es", "pt-br") for greatest compatibility. */ defaultLocale: string; @@ -1521,12 +1521,12 @@ export interface AstroUserConfig { * * Controls the routing strategy to determine your site URLs. Set this based on your folder/URL path configuration for your default language: * - * - `prefix-other-locales`(default): Only non-default languages will display a language prefix. - * The `defaultLocale` will not show a language prefix and content files do not exist in a localized folder. + * - `prefix-other-locales`(default): Only non-default languages will display a language prefix. + * The `defaultLocale` will not show a language prefix and content files do not exist in a localized folder. * URLs will be of the form `example.com/[locale]/content/` for all non-default languages, but `example.com/content/` for the default locale. * - `prefix-always`: All URLs will display a language prefix. * URLs will be of the form `example.com/[locale]/content/` for every route, including the default language. - * Localized folders are used for every language, including the default. + * Localized folders are used for every language, including the default. * */ routingStrategy?: 'prefix-always' | 'prefix-other-locales';