mirror of
https://github.com/Textualize/textual-serve.git
synced 2025-10-17 02:50:37 +03:00
fix slash issue
This commit is contained in:
@@ -1 +1 @@
|
|||||||
3.8.19
|
3.11.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "textual-serve"
|
name = "textual-serve"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
description = "Turn your Textual TUIs in to web applications"
|
description = "Turn your Textual TUIs in to web applications"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Will McGugan", email = "will@textualize.io" }
|
{ name = "Will McGugan", email = "will@textualize.io" }
|
||||||
|
|||||||
@@ -265,7 +265,7 @@ class Server:
|
|||||||
}
|
}
|
||||||
context["config"] = {
|
context["config"] = {
|
||||||
"static": {
|
"static": {
|
||||||
"url": get_url("static", filename="/") + "/",
|
"url": get_url("static", filename="/").rstrip("/") + "/",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
context["application"] = {
|
context["application"] = {
|
||||||
|
|||||||
Reference in New Issue
Block a user