Doesn’t it work though with services that issue their own certs, I.e. Pages, even if you don’t have
Doesn’t it work though with services that issue their own certs, I.e. Pages, even if you don’t have ACM?
The script will never generate a response. error only happens super randomly is completely undebuggable and after 8 seconds everything seems to be working completely fine. It's just super hard and random to debug because the tail literally says nothing. And Sentry (which is integrated) also does not throw an error. So its literally "poking in nothing" and I cant figure it out. Does anybody have to deal with it aswell or any direction that I could be pointed ?[...slug].astroGET https://murtleontour.ruxiom.dev/ - Exception Thrown @ 13.1.2024, 17:40:28
✘ [ERROR] Error: The script will never generate a response.
GET https://murtleontour.ruxiom.dev/ - Ok @ 13.1.2024, 17:40:36The script will never generate a response.[...slug].astrolet story;
try {
const { data } = await storyblokApi.get(
`cdn/stories/${slug === undefined ? "startseite" : slug}`,
{
version:
import.meta.env.PUBLIC_ENV === "production" ? "published" : "draft",
resolve_links: "url",
}
);
story = data.story;
} catch (error) {
throw new Error(toErrorWithMessage(error).message);
}