frontend: updating build command, location of static files

This commit is contained in:
Mose Müller
2023-08-02 12:06:21 +02:00
parent 532390c3fd
commit fb0d1c3d07
11 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ class WebAPI:
app.mount(
"/",
StaticFiles(
directory=Path(__file__).parent.parent.parent / "frontend",
directory=Path(__file__).parent.parent / "frontend",
html=True,
),
)