This commit is contained in:
Rizky 2024-06-28 00:14:06 +07:00
parent 27eb527cce
commit 5e90332489
2 changed files with 3 additions and 1 deletions

View File

@ -54,6 +54,7 @@ export const createResponse = (
cache_accept?: string;
headers?: any;
res?: any;
br?: boolean;
}
) => {
const status =
@ -63,7 +64,7 @@ export const createResponse = (
const headers = { ...(opt?.headers || {}) } as Record<string, string>;
if (opt?.cache_accept) {
let cached = false;
if (opt.cache_accept.toLowerCase().includes("br")) {
if (opt?.br && opt.cache_accept.toLowerCase().includes("br")) {
const content_hash = simpleHash(content);
if (!g.cache.br[content_hash]) {

View File

@ -9,6 +9,7 @@ export const serveWeb = async (arg: {
const type = mime.getType(arg.pathname);
return createResponse(arg.content, {
cache_accept: arg.cache_accept,
br: true,
headers: !type ? undefined : { "content-type": type },
});
};