summaryrefslogtreecommitdiff
path: root/server/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/main.go')
-rw-r--r--server/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.go b/server/main.go
index cd2e445..ad79bcf 100644
--- a/server/main.go
+++ b/server/main.go
@@ -34,7 +34,7 @@ func registerHandlers(e *echo.Echo) {
e.Use(middleware.BodyLimit(fmt.Sprintf("%dM", maxUploadSize/(1024*1024))))
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
Root: "dist",
- Index: "upload.html",
+ Index: "index.html",
HTML5: true,
Filesystem: http.FS(dist),
}))