fix: relax bundle config requirements and default assetsBaseUrl

This commit is contained in:
Pandipipas
2026-03-03 20:24:56 +01:00
parent a93492b86b
commit d4fe407b92
4 changed files with 12 additions and 14 deletions
+5 -6
View File
@@ -4,7 +4,8 @@
"additionalProperties": false,
"properties": {
"exampleProperty": {
"type": "string"
"type": "string",
"default": ""
},
"startggClientId": {
"type": "string",
@@ -42,11 +43,9 @@
},
"assetsBaseUrl": {
"type": "string",
"description": "URL base obligatoria para descargar assets por HTTP (ej: http://192.168.1.50:8080)."
"default": "http://localhost",
"description": "URL base para descargar assets por HTTP (ej: http://192.168.1.50:8080). Por defecto usa http://localhost."
}
},
"required": [
"exampleProperty",
"assetsBaseUrl"
]
"required": []
}