update server for windows users
This commit is contained in:
parent
5b6c992043
commit
d0e9e15e97
1 changed files with 13 additions and 2 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue