Tag:astro
All the articles with the tag "astro".
Introducing My New Blogging Platform
Posted on:July 19, 2023My new blogging platform built on Astro Build and Astro Paper
Updating To Astro 3.0
Posted on:August 30, 2023Information on how I updated my site to Astro 3.0
Migrating an Astro Blog to Deno Deploy
Posted on:October 21, 2024In this article, I share my experience migrating my Astro-based website from Netlify to Deno Deploy, exploring the challenges and advantages of adopting a hybrid approach that combines static and dynamic content.
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.