joesavage-silabs
Results
2
comments of
joesavage-silabs
To solve this issue without importing highlight.js manually, add the following to your vite.config.ts: optimizeDeps: { include: ['highlight.js'] }
Here's a super-simple model that reproduces the issue: ``` class TestModel(BaseModel): model_config = ConfigDict(extra="allow") system_properties: dict | None = Field( None, description="Miscellaneous properties" ) ``` Getting rid of `model_config =...