From ca9ed57d950823dc49210f08d097c602c5bd2e60 Mon Sep 17 00:00:00 2001 From: Dmitry Shurco Date: Wed, 6 Sep 2023 12:07:33 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20web=20folder=20not=20load?= =?UTF-8?q?ing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app.go b/internal/app.go index 2ab416c..28769ed 100644 --- a/internal/app.go +++ b/internal/app.go @@ -55,7 +55,7 @@ func NewApp(httpAddr, httpsAddr string, noSite, appDev bool) error { var sitePath string if !noSite { - sitePath := "./site" + sitePath = "./site" if DevMode { sitePath = "../web/site" } else {