fix: correct cross-origin handling

This commit is contained in:
2025-10-08 15:27:06 +02:00
parent 7a8bd4393e
commit 80d03de3c8
2 changed files with 4 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
app_title: str = "PepperPlus"
ui_url: HttpUrl = HttpUrl("http://localhost:5173")
ui_url: str = "http://localhost:5173"
model_config = SettingsConfigDict(env_file=".env")