Matt Kane
Matt Kane
Sessions
# Summary An `Astro.session` primitive, with pluggable storage backends. ```astro --- // src/components/CartButton.astro const cart = await Astro.session.get('cart'); --- 🛒 {cart?.length ?? 0} items ``` ```ts // src/pages/api/addToCart.ts import type...
# Summary Implements opinionated best practices in Astro Image, generating srcset, sizes and styles automatically. ```astro --- import { Image } from "astro:assets" import rocket from "./rocket.jpg" --- ``` #...
Please explain below why you think this comment should be deleted. ### Reported Comment - question: Meta-Frameworks Happiness - comment ID: qM92MmcX2uG5vGlz7s4CV - comment: > Stop fucking making them you...
### Which problem is this feature request solving? The `--edgeInspect` and `--edgeInspectBrk` options are available in `ntl dev`, to expose use of the Deno debugger. These are not available in...
**Is your feature request related to a problem? Please describe.** Currently, if a use runs `netlify build` and then `netlify deploy`, any config changes made by a build plugin are...
**Is your feature request related to a problem? Please describe.** In development I often need to clean the cache, and it's annoying having to do this manually. **Describe the solution...
#### Description (required) We're removing the need to set the type when defining live collections. #### Related issues & labels (optional) https://github.com/withastro/astro/pull/14019 - Closes # - Suggested label:
### What version of `@astrojs/compiler` are you using? 2.10.3 ### What package manager are you using? pnpm ### What operating system are you using? Mac ### Describe the Bug Normally,...
Wrangler uses some external types that aren't dependencies, because the code itself is bundled. This meant that the types are unavailable in production. This was a massive pain to try...