# PR Checklist
- [ ] Have you checked if it works normally in all models? *Ignore this
if it doesn't use models.*
- [ ] Have you checked if it works normally in all web, local, and node
hosted versions? If it doesn't, have you blocked it in those versions?
- [ ] Have you added type definitions?
# Description
While testing image generation with ComfyUI, I encountered a permission
error when trying to send requests to the local ComfyUI server. The
application was throwing the following error:
`url not allowed on the configured scope: http://localhost:8188/prompt`
## Solution
Added a wildcard URL pattern to `migrated.json` that explicitly allows
connections to localhost with any port number:
```json
{
"url": "http://*:**"
}