diff options
author | 2024-01-05 10:48:47 -0400 | |
---|---|---|
committer | 2024-01-05 10:48:47 -0400 | |
commit | 64a8470ddb36d74919caebc459e7b2983247888c (patch) | |
tree | 363bfe16fa41bce461da383229e3f1932496f161 | |
parent | 5156c740506cbf6ec85c95e1663c14cbd438d75b (diff) | |
download | astro-64a8470ddb36d74919caebc459e7b2983247888c.tar.gz astro-64a8470ddb36d74919caebc459e7b2983247888c.tar.zst astro-64a8470ddb36d74919caebc459e7b2983247888c.zip |
[docs] update config reference (#9621)
-rw-r--r-- | packages/astro/src/@types/astro.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index f32bcefe0..97429212c 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -963,7 +963,7 @@ export interface AstroUserConfig { * - `'tap'`: Prefetch just before you click on the link. * - `'hover'`: Prefetch when you hover over or focus on the link. (default) * - `'viewport'`: Prefetch as the links enter the viewport. - * - `'load'`: Prefetch the link without any restrictions. + * - `'load'`: Prefetch all links on the page after the page is loaded. * * You can override this default value and select a different strategy for any individual link by setting a value on the attribute. * @@ -1033,7 +1033,7 @@ export interface AstroUserConfig { * @name server.open * @type {string | boolean} * @default `false` - * @version 2.1.8 + * @version 4.1.0 * @description * Controls whether the dev server should open in your browser window on startup. * |