From a8f8df59dcfa8bd56123a24abb16b7f970bd4f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=AC=E3=82=AF=E3=82=B5=E3=83=B3=E3=83=80?= =?UTF-8?q?=E3=83=BC=2Eeth?= <4975670+pavlovcik@users.noreply.github.com> Date: Wed, 21 Feb 2024 00:58:18 +0900 Subject: [PATCH] Update esbuild-server.ts --- build/esbuild-server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/esbuild-server.ts b/build/esbuild-server.ts index ab4de22..bb992ae 100644 --- a/build/esbuild-server.ts +++ b/build/esbuild-server.ts @@ -11,7 +11,7 @@ import { esBuildContext } from "./esbuild-build"; export async function server() { const _context = await esbuild.context(esBuildContext); const { port } = await _context.serve({ - servedir: "static/dist", + servedir: "static", port: 8080, }); console.log(`http://localhost:${port}`);