diff options
author | 2023-11-13 20:52:09 -0400 | |
---|---|---|
committer | 2023-11-13 20:52:09 -0400 | |
commit | 554017b66ac139a422eb1c2a128c519de8945116 (patch) | |
tree | 14491153e870a819bd9cde02de44ecb798dcc073 | |
parent | 9294c7535d6a5dcf362a6484dad2751b514b5efd (diff) | |
download | astro-554017b66ac139a422eb1c2a128c519de8945116.tar.gz astro-554017b66ac139a422eb1c2a128c519de8945116.tar.zst astro-554017b66ac139a422eb1c2a128c519de8945116.zip |
[docs] config-reference typo (#9094)
-rw-r--r-- | packages/astro/src/@types/astro.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index e517a0424..f15cf7d09 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1500,7 +1500,7 @@ export interface AstroUserConfig { * The following example configures your content fallback strategy to redirect unavailable pages in `/pt-br/` to their `es` version, and unavailable pages in `/fr/` to their `en` version. Unavailable `/es/` pages will return a 404. * * ```js - * export defualt defineConfig({ + * export default defineConfig({ * experimental: { * i18n: { * defaultLocale: "en", |