astro@7.1.6
Added
- Add feature to experimental.collectionStorage that allows changing the size of chunks
Changed
- Bump Astro compiler to the latest version
Fixed
- Fix concurrent static builds failing to generate i18n rewrite fallbacks for dynamic routes
- Fix stale dev CSS after editing component style blocks and CSS files in dev
Patch Changes
-
#17536
ff97b86Thanks @dmgawel! - Fixes concurrent static builds failing to generate i18n rewrite fallbacks for dynamic routes -
#17383
296e1b0Thanks @thelazylamaGit! - Fixes stale dev CSS after editing component style blocks and CSS files in dev -
#17543
bbc1ec9Thanks @ematipico! - Adds a feature toexperimental.collectionStoragethat allows to change the size of chunks.For example, you can reduce the size of chunks to 1MB:
// astro.config.mjs import { defineConfig } from 'astro/config'; export default defineConfig({ experimental: { collectionStorage: { type: 'chunked', chunkSize: 1024 * 1024, }, }, }); -
#17545
5214663Thanks @ematipico! - Bumps the Astro compiler to the latest version. Changelog.