summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sarah Rainsberger <sarah@rainsberger.ca> 2023-05-04 19:04:21 -0300
committerGravatar GitHub <noreply@github.com> 2023-05-04 18:04:21 -0400
commit60688a7d167667ada7fe2a7e7d7da8e363b902c1 (patch)
tree558a01403a86482e426df4d13ce1f32cee169db5
parent2ff31e5c7bafe038f1a036d7da2352ce188315e7 (diff)
downloadastro-60688a7d167667ada7fe2a7e7d7da8e363b902c1.tar.gz
astro-60688a7d167667ada7fe2a7e7d7da8e363b902c1.tar.zst
astro-60688a7d167667ada7fe2a7e7d7da8e363b902c1.zip
Update astro.ts (#6999)
-rw-r--r--packages/astro/src/@types/astro.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index 441318e0b..0f8cf4240 100644
--- a/packages/astro/src/@types/astro.ts
+++ b/packages/astro/src/@types/astro.ts
@@ -1060,8 +1060,8 @@ export interface AstroUserConfig {
* @type {('always' | 'auto' | 'never')}
* @default `never`
* @description
- * Control whether styles are sent to the browser in a separate css file or inlined into <style> tags. Choose from the following options:
- * - `'always'` - all styles are inlined into <style> tags
+ * Control whether styles are sent to the browser in a separate css file or inlined into `<style>` tags. Choose from the following options:
+ * - `'always'` - all styles are inlined into `<style>` tags
* - `'auto'` - only stylesheets smaller than `ViteConfig.build.assetsInlineLimit` (default: 4kb) are inlined. Otherwise, styles are sent in external stylesheets.
* - `'never'` - all styles are sent in external stylesheets
*