Tag:preact
All the articles with the tag "preact".
Fetch Calls in Astro With Relative Routes
Posted on:October 21, 2024Today I learned that when writing a fetch call without `useEffect` hooks, it executes during the initial server-side render requiring a fully qualified route, whereas wrapping it in a hook confines the fetch to the client-side, allowing the use of a relative route.