summaryrefslogtreecommitdiff
path: root/.changeset/smart-numbers-shout.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-08-30 04:38:28 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-30 13:38:28 +0200
commit5598feb71864f814d0a34bb6bf9f6ecdff081497 (patch)
tree15cfefaaeb8b7f346eb96e05a5e9e086d7bd262b /.changeset/smart-numbers-shout.md
parente33d951af178ce0b50a41799d3ce76d107c961db (diff)
downloadastro-d67d89773938d4954e86a825f685c0e2ba98a75b.tar.gz
astro-d67d89773938d4954e86a825f685c0e2ba98a75b.tar.zst
astro-d67d89773938d4954e86a825f685c0e2ba98a75b.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/smart-numbers-shout.md')
-rw-r--r--.changeset/smart-numbers-shout.md19
1 files changed, 0 insertions, 19 deletions
diff --git a/.changeset/smart-numbers-shout.md b/.changeset/smart-numbers-shout.md
deleted file mode 100644
index 29d9c97e6..000000000
--- a/.changeset/smart-numbers-shout.md
+++ /dev/null
@@ -1,19 +0,0 @@
----
-'astro': major
----
-
-Astro is smarter about CSS! Small stylesheets are now inlined by default, and no longer incur the cost of additional requests to your server. Your visitors will have to wait less before they see your pages, especially those in remote locations or in a subway.
-
-This may not be news to you if you had opted-in via the `build.inlineStylesheets` configuration. Stabilized in Astro 2.6 and set to "auto" by default for Starlight, this configuration allows you to reduce the number of requests for stylesheets by inlining them into <style> tags. The new default is "auto", which selects assets smaller than 4kB and includes them in the initial response.
-
-To go back to the previous default behavior, change `build.inlineStylesheets` to "never".
-
-```ts
-import { defineConfig } from 'astro/config';
-
-export default defineConfig({
- build: {
- inlineStylesheets: 'never',
- },
-});
-```