mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00:00
18 lines
612 B
TypeScript
18 lines
612 B
TypeScript
import { component$, Slot } from "@builder.io/qwik";
|
|
import type { RequestHandler } from "@builder.io/qwik-city";
|
|
|
|
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 />;
|
|
});
|