-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
@adam-nelson-kunai has run into issues when running the following code threw the new optimizer:
import { component$, Slot } from "@qwik.dev/core";
import type { RequestHandler } from "@qwik.dev/router";
export const onGet: RequestHandler = async ({ cacheControl }) => {
// Control caching for this request for best performance and to reduce hosting costs:
// https://qwik.dev/docs/caching/
cacheControl({
// Always serve a cached response by default, up to a week stale
staleWhileRevalidate: 60 * 60 * 24 * 7,
// Max once every 5 seconds, revalidate on the server to get a fresh version of this page
maxAge: 5,
});
};
export default component$(() => {
return <Slot />;
});
I am looking to reproduce and address the root cause as neccessary.
Metadata
Metadata
Assignees
Labels
No labels