create project

This commit is contained in:
ismailsosic
2022-12-27 12:05:56 +01:00
parent 2a33a2d3de
commit cd2143287c
16035 changed files with 2489703 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
import send from "next/dist/compiled/send";
// TODO: Remove this once "send" has updated the "mime", or next.js use custom version of "mime"
// Although "mime" has already add avif in version 2.4.7, "send" is still using mime@1.6.0
send.mime.define({
"image/avif": [
"avif"
]
});
export function serveStatic(req, res, path) {
return new Promise((resolve, reject)=>{
send(req, path).on("directory", ()=>{
// We don't allow directories to be read.
const err = new Error("No directory access");
err.code = "ENOENT";
reject(err);
}).on("error", reject).pipe(res).on("finish", resolve);
});
}
export function getContentType(extWithoutDot) {
const { mime } = send;
if ("getType" in mime) {
// 2.0
return mime.getType(extWithoutDot);
}
// 1.0
return mime.lookup(extWithoutDot);
}
export function getExtension(contentType) {
const { mime } = send;
if ("getExtension" in mime) {
// 2.0
return mime.getExtension(contentType);
}
// 1.0
return mime.extension(contentType);
}
//# sourceMappingURL=serve-static.js.map