diff options
author | 2023-05-19 00:14:17 +0800 | |
---|---|---|
committer | 2023-05-18 12:14:17 -0400 | |
commit | dad105a91e2d9b59cfd6aba7703207ba08841c10 (patch) | |
tree | a387715b78bbcd27550e93b31f80c93b6fc486c2 | |
parent | e186ecc5e292de8c6a2c441a2d588512c0813068 (diff) | |
download | astro-dad105a91e2d9b59cfd6aba7703207ba08841c10.tar.gz astro-dad105a91e2d9b59cfd6aba7703207ba08841c10.tar.zst astro-dad105a91e2d9b59cfd6aba7703207ba08841c10.zip |
Document inlineStylesheets available astro version (#7117)
-rw-r--r-- | packages/astro/src/@types/astro.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index e7ade1c6d..c7b1c4f59 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1082,6 +1082,7 @@ export interface AstroUserConfig { * @name experimental.inlineStylesheets * @type {('always' | 'auto' | 'never')} * @default `never` + * @version 2.4.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 |