fix slash issue

This commit is contained in:
Will McGugan
2024-09-10 10:38:49 +01:00
parent 3ddc373822
commit 6d13319e68
3 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
3.8.19
3.11.1

View File

@@ -1,6 +1,6 @@
[project]
name = "textual-serve"
version = "1.1.0"
version = "1.1.1"
description = "Turn your Textual TUIs in to web applications"
authors = [
{ name = "Will McGugan", email = "will@textualize.io" }

View File

@@ -265,7 +265,7 @@ class Server:
}
context["config"] = {
"static": {
"url": get_url("static", filename="/") + "/",
"url": get_url("static", filename="/").rstrip("/") + "/",
},
}
context["application"] = {