feat(capabilities): add localhost URL to default permissions

- Updated the default capabilities configuration to allow access to http://localhost:3040 in addition to the existing https://haystack.johncosta.tech URL.
This commit is contained in:
2025-04-13 21:28:14 +02:00
parent 5406e79fc8
commit 7af536bd9c

View File

@ -15,7 +15,14 @@
"http:default",
{
"identifier": "http:default",
"allow": [{ "url": "https://haystack.johncosta.tech" }]
"allow": [
{
"url": "https://haystack.johncosta.tech"
},
{
"url": "http://localhost:3040"
}
]
}
]
}