53 lines
1.9 KiB
JavaScript
53 lines
1.9 KiB
JavaScript
import { createReadStream, existsSync, statSync } from "node:fs";
|
|
import { createServer } from "node:http";
|
|
import { extname, join, normalize, resolve, sep } from "node:path";
|
|
|
|
const port = Number.parseInt(process.env.PORT ?? "3300", 10);
|
|
const root = resolve(process.cwd(), "out");
|
|
const contentTypes = {
|
|
".css": "text/css; charset=utf-8",
|
|
".html": "text/html; charset=utf-8",
|
|
".ico": "image/x-icon",
|
|
".js": "text/javascript; charset=utf-8",
|
|
".json": "application/json; charset=utf-8",
|
|
".png": "image/png",
|
|
".svg": "image/svg+xml",
|
|
".txt": "text/plain; charset=utf-8",
|
|
".webmanifest": "application/manifest+json",
|
|
".woff": "font/woff",
|
|
".woff2": "font/woff2",
|
|
};
|
|
|
|
if (!existsSync(join(root, "index.html"))) {
|
|
throw new Error("Static export not found. Run `npm run build` first.");
|
|
}
|
|
|
|
createServer((request, response) => {
|
|
const pathname = decodeURIComponent(new URL(request.url ?? "/", "http://localhost").pathname);
|
|
const relativePath = normalize(pathname).replace(/^([/\\])+/, "");
|
|
let filePath = resolve(root, relativePath || "index.html");
|
|
|
|
if (filePath !== root && !filePath.startsWith(`${root}${sep}`)) {
|
|
response.writeHead(400).end("Bad request");
|
|
return;
|
|
}
|
|
|
|
if (existsSync(filePath) && statSync(filePath).isDirectory()) {
|
|
filePath = join(filePath, "index.html");
|
|
}
|
|
|
|
// React Router owns application routes. Assets and exported Next files are still
|
|
// served directly, while deep links fall back to the application shell.
|
|
if (!existsSync(filePath) || !statSync(filePath).isFile()) {
|
|
filePath = join(root, "index.html");
|
|
}
|
|
|
|
response.writeHead(200, {
|
|
"Cache-Control": "no-store",
|
|
"Content-Type": contentTypes[extname(filePath)] ?? "application/octet-stream",
|
|
});
|
|
createReadStream(filePath).pipe(response);
|
|
}).listen(port, "localhost", () => {
|
|
process.stdout.write(`Static export listening on http://localhost:${port}\n`);
|
|
});
|