astro 1.4.7
Patch Changes
-
#5035
d7bfb144bThanks @AirBorne04! - preventing multiple doctype injection into html documents -
#5015
b1964e9e1Thanks @matthewp! - Shared state in Preact components with signalsThis makes it possible to share client state between Preact islands via signals.
For example, you can create a signals in an Astro component and then pass it to multiple islands:
--- // Component Imports import Counter from '../components/Counter'; import { signal } from '@preact/signals'; const count = signal(0); --- <Count count={count} /> <Count count={count} /> -
#5036
38fdb4ca6Thanks @matthewp! - New algorithm for shorter CSS bundle names