diff --git a/glc/gweb/http_server.go b/glc/gweb/http_server.go index 16ea3dc..581060d 100644 --- a/glc/gweb/http_server.go +++ b/glc/gweb/http_server.go @@ -89,6 +89,8 @@ func Run() { path = "/**/*.css" } else if cmn.Endwiths(path, ".js") { path = "/**/*.js" + } else if cmn.Endwiths(path, ".txt") { + path = "/**/*.txt" } else if cmn.Endwiths(path, ".png") { path = "/**/*.png" } else if cmn.Endwiths(path, ".ico") {