hatch-surf/node_modules/next/dist/esm/server/serve-static.js
Riley Zhang df378d33ef
Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Merge GitHub main into Gitea repo (allow unrelated histories)
Resolved conflicts by taking GitHub versions for:
- .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml

Kept deploy.sh updated to:
- Pull from GitHub (primary source)
- Push to Gitea (push-mirror)
- Build from site/ directory (GitHub structure)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-25 05:20:46 +02:00

35 lines
1.3 KiB
JavaScript

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'
],
'image/x-icns': [
'icns'
],
'image/jxl': [
'jxl'
],
'image/heic': [
'heic'
]
});
export function serveStatic(req, res, path, opts) {
return new Promise((resolve, reject)=>{
send(req, path, opts).on('directory', ()=>{
// We don't allow directories to be read.
const err = Object.defineProperty(new Error('No directory access'), "__NEXT_ERROR_CODE", {
value: "E340",
enumerable: false,
configurable: true
});
err.code = 'ENOENT';
reject(err);
}).on('error', reject).pipe(res).on('finish', resolve);
});
}
export const getContentType = 'getType' in send.mime ? (extWithoutDot)=>send.mime.getType(extWithoutDot) : (extWithoutDot)=>send.mime.lookup(extWithoutDot);
export const getExtension = 'getExtension' in send.mime ? (contentType)=>send.mime.getExtension(contentType) : (contentType)=>send.mime.extension(contentType);
//# sourceMappingURL=serve-static.js.map