Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/be7caeb61526ef90115d7fc7fdca4ae85c4effebbc4599a368fa19ad9b4f55e070a2757374782db1d6ec808e9916c782ff8efee457114d438c763ff46ccafb
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

22 lines
No EOL
815 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "getCacheControlHeader", {
enumerable: true,
get: function() {
return getCacheControlHeader;
}
});
const _constants = require("../../lib/constants");
function getCacheControlHeader({ revalidate, expire }) {
const swrHeader = typeof revalidate === 'number' && expire !== undefined && revalidate < expire ? `, stale-while-revalidate=${expire - 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=${_constants.CACHE_ONE_YEAR}${swrHeader}`;
}
//# sourceMappingURL=cache-control.js.map