@@ -1177,6 +1177,10 @@ export type ServerConfig = {
* Enable mDNS service discovery
*/
mdns?: boolean
+ /**
+ * Additional domains to allow for CORS
+ */
+ cors?: Array<string>
}
export type AgentConfig = {
@@ -7793,6 +7793,13 @@
"mdns": {
"description": "Enable mDNS service discovery",
"type": "boolean"
+ },
+ "cors": {
+ "description": "Additional domains to allow for CORS",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
},
"additionalProperties": false