diff options
author | 2023-08-16 18:52:40 +0100 | |
---|---|---|
committer | 2023-08-16 12:52:40 -0500 | |
commit | db5e8ad8aff7a62ba45182115a95054b73f42a7d (patch) | |
tree | 8102626781b37201b748ecf6117bb9f3e66fb843 | |
parent | fb31ce55d943a88ff0d922cc2e4cca8d98a35eba (diff) | |
download | astro-db5e8ad8aff7a62ba45182115a95054b73f42a7d.tar.gz astro-db5e8ad8aff7a62ba45182115a95054b73f42a7d.tar.zst astro-db5e8ad8aff7a62ba45182115a95054b73f42a7d.zip |
Update build.inlineStylesheets docs (#8061)
Co-authored-by: Elian ☕️ <hello@elian.codes>
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r-- | packages/astro/src/@types/astro.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 4fa3048bd..e35ad4863 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -839,10 +839,10 @@ export interface AstroUserConfig { * @default `never` * @version 2.6.0 * @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 - * - `'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 + * Control whether project styles are sent to the browser in a separate css file or inlined into `<style>` tags. Choose from the following options: + * - `'always'` - project styles are inlined into `<style>` tags + * - `'auto'` - only stylesheets smaller than `ViteConfig.build.assetsInlineLimit` (default: 4kb) are inlined. Otherwise, project styles are sent in external stylesheets. + * - `'never'` - project styles are sent in external stylesheets * * ```js * { |