Merge pull request #3563 from lowjoel/fix-app-config-schema

fix(cli): Fix Config Schema for `app.listen`
This commit is contained in:
Ben Lambert
2020-12-04 10:50:48 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Fix config schema for `.app.listen`
+1 -1
View File
@@ -178,7 +178,7 @@
"description": "Listening configuration for local development",
"properties": {
"host": {
"type": "number",
"type": "string",
"visibility": "frontend",
"description": "The host that the frontend should be bound to. Only used for local development."
},