Skip to content

Commit 51fa823

Browse files
Changes default IP address to 127.0.0.1. Closes #396 (#397)
1 parent 1adbe64 commit 51fa823

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev-proxy/ProxyConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class ProxyConfiguration: IProxyConfiguration {
1010
[JsonPropertyName("port")]
1111
public int Port { get; set; } = 8000;
1212
[JsonPropertyName("ipAddress")]
13-
public string? IPAddress { get; set; }
13+
public string? IPAddress { get; set; } = "127.0.0.1";
1414
[JsonPropertyName("labelMode")]
1515
[JsonConverter(typeof(JsonStringEnumConverter))]
1616
public LabelMode LabelMode { get; set; } = LabelMode.Text;

0 commit comments

Comments
 (0)