Files
bigtux 20a26affaa 📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final
- MANUAL-VENDAS.md: Estratégia comercial e vendas
- MANUAL-TECNICO.md: Infraestrutura e deploy
- README.md: Visão geral do projeto
2026-02-10 15:08:15 -03:00

12 lines
521 B
JavaScript

import { CACHE_ONE_YEAR } from "../../lib/constants";
export function formatRevalidate({ revalidate, swrDelta }) {
const swrHeader = swrDelta ? `stale-while-revalidate=${swrDelta}` : "stale-while-revalidate";
if (revalidate === 0) {
return "private, no-cache, no-store, max-age=0, must-revalidate";
} else if (typeof revalidate === "number") {
return `s-maxage=${revalidate}, ${swrHeader}`;
}
return `s-maxage=${CACHE_ONE_YEAR}, ${swrHeader}`;
}
//# sourceMappingURL=revalidate.js.map