From d0e9e15e97d2849f447016014559f2a0564c873f Mon Sep 17 00:00:00 2001 From: creations Date: Thu, 26 Dec 2024 09:14:38 -0500 Subject: [PATCH] update server for windows users --- src/server.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/server.ts b/src/server.ts index c74e124..3f92824 100644 --- a/src/server.ts +++ b/src/server.ts @@ -6,6 +6,8 @@ import { type MatchedRoute, type Serve, } from "bun"; +import { platform } from "os"; +import { resolve } from "path"; class ServerHandler { private router: FileSystemRouter; @@ -52,8 +54,17 @@ class ServerHandler { private async serveStaticFile(pathname: string): Promise { try { - // eslint-disable-next-line prettier/prettier - let filePath: string = pathname === "/favicon.ico" ? new URL("../public/assets/favicon.ico", import.meta.url,).pathname: new URL(`..${pathname}`, import.meta.url).pathname; + let filePath: string; + + 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);