aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 965f426..c9d0e56 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,7 @@ func main() {
r.Use(gin.Logger())
r.Use(static.Serve("/",
- static.LocalFile("./../build", true)))
+ static.LocalFile("./build", true)))
r.Run(":" + os.Getenv("PORT"))
}