remove /web prefix from the frontend_url variable

This commit is contained in:
maxDorninger
2025-11-29 15:54:01 +01:00
parent 9b0fac3a8b
commit bb5c61ac79
5 changed files with 10 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ class BasicConfig(BaseSettings):
movie_directory: Path = Path(__file__).parent.parent / "data" / "movies"
torrent_directory: Path = Path(__file__).parent.parent / "data" / "torrents"
frontend_url: AnyHttpUrl = "http://localhost:3000/web/"
frontend_url: AnyHttpUrl = "http://localhost:3000"
cors_urls: list[str] = []
development: bool = False