mirror of
https://github.com/certd/certd.git
synced 2026-07-14 01:17:31 +08:00
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
|
|
export function shouldSetDefaultNoCache(path: string, cacheControl?: string) {
|
||
|
|
if (cacheControl) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
return path === '/' || path === '/index.html' || path.startsWith('/api');
|
||
|
|
}
|