You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change moves Harness bridge communication onto Metro so everything runs through a single dev server port instead of a separate bridge port.
It keeps the setup simpler and more predictable, reduces extra platform-specific port wiring, and preserves compatibility by keeping webSocketPort around as a deprecated config option for now.
host: external_exports.string().min(1,"Host is required").optional(),
4390
4390
metroPort: external_exports.number().int("Metro port must be an integer").min(1,"Metro port must be at least 1").max(65535,"Metro port must be at most 65535").optional().default(DEFAULT_METRO_PORT),
0 commit comments