summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar sarah11918 <sarah11918@users.noreply.github.com> 2023-11-09 20:21:12 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-11-09 20:21:12 +0000
commita888e985384918798e7c2f203e0dee48a4a21225 (patch)
tree637aa44ca776c4959f55489f51300dbaeb66be7b
parentea71975ec0c99f407f0e2fd0c248a959284d2068 (diff)
downloadastro-a888e985384918798e7c2f203e0dee48a4a21225.tar.gz
astro-a888e985384918798e7c2f203e0dee48a4a21225.tar.zst
astro-a888e985384918798e7c2f203e0dee48a4a21225.zip
[ci] format
-rw-r--r--packages/astro/src/@types/astro.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index c5a74340a..e26fd11b9 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';