Fix base path

This commit is contained in:
2022-01-31 09:47:46 +01:00
parent d0ba48c32a
commit aa73640e55

View File

@@ -36,6 +36,6 @@ func init() {
FrontendDir = os.Getenv("FRONTEND_DIR")
PageBase = pageBase{
BasePath: path.Join(ServerAddress, Prefix),
BasePath: "http://" + path.Join(ServerAddress, Prefix),
}
}