update server for windows users

This commit is contained in:
creations 2024-12-26 09:14:38 -05:00
parent 5b6c992043
commit d0e9e15e97
Signed by: creations
GPG key ID: 8F553AA4320FC711

View file

@ -6,6 +6,8 @@ import {
type MatchedRoute, type MatchedRoute,
type Serve, type Serve,
} from "bun"; } from "bun";
import { platform } from "os";
import { resolve } from "path";
class ServerHandler { class ServerHandler {
private router: FileSystemRouter; private router: FileSystemRouter;
@ -52,8 +54,17 @@ class ServerHandler {
private async serveStaticFile(pathname: string): Promise<Response> { private async serveStaticFile(pathname: string): Promise<Response> {
try { try {
// eslint-disable-next-line prettier/prettier let filePath: string;
let filePath: string = pathname === "/favicon.ico" ? new URL("../public/assets/favicon.ico", import.meta.url,).pathname: new URL(`..${pathname}`, import.meta.url).pathname;
if (pathname === "/favicon.ico") {
filePath = resolve("./public/assets/favicon.ico");
} else {
filePath = resolve(`.${pathname}`);
}
if (platform() === "win32") {
filePath = filePath.replace(/\//g, "\\");
}
const file: BunFile = Bun.file(filePath); const file: BunFile = Bun.file(filePath);