From 3e1ae9c2862a12fe6af689493dff6a7bc7fe0fb6 Mon Sep 17 00:00:00 2001 From: NeonXP Date: Sat, 20 Jan 2024 23:57:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=80=D0=BE=D1=83=D1=82=D0=B8=D0=BD=D0=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/index.html | 2 +- main.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index 8f8e543..3b6e5f9 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,7 +3,7 @@ - nQuest + NQuest
diff --git a/main.go b/main.go index 48e825d..d7bd649 100644 --- a/main.go +++ b/main.go @@ -153,6 +153,7 @@ func main() { api.RegisterHandlersWithBaseURL(codegen, handler, "/api") e.StaticFS("/", distDirFS) + e.FileFS("/", "index.html", distIndexHtml) e.FileFS("/*", "index.html", distIndexHtml) // --[ System ]--