79744840

Date: 2025-08-24 11:48:51
Score: 0.5
Natty:
Report link

Had the same issue, and appear that I cannot be used with output: "static" and for now Astro@5 we can only use output: "server" and this fixed the issue but ofc we need to handle different deployment by that.

used this solution

---
const initialTag = Astro.url.searchParams.get("tag") || "";
---

tried to fix it to work with output: "static" and marking the page as not prerendered:

---
...
export const prerender = false;
---

but after build it appear - it doesn't work

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: devzom