Update astro.ts (#6999)

This commit is contained in:
Sarah Rainsberger 2023-05-04 19:04:21 -03:00 committed by GitHub
parent 2ff31e5c7b
commit 60688a7d16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
*