generate a nicer url in documentation (/rest instead of /openapi/../rest)

This commit is contained in:
Athou
2023-12-29 11:21:28 +01:00
parent e0c05c8e5d
commit a491b95a02
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ function ApiDocumentationPage() {
return (
// force white background because documentation does not support dark theme
<Box style={{ backgroundColor: "#fff" }}>
<RedocStandalone specUrl="openapi/openapi.json" />
<RedocStandalone specUrl="openapi.json" />
</Box>
)
}