diff options
author | 2022-11-09 01:12:06 -0800 | |
---|---|---|
committer | 2022-11-09 01:12:35 -0800 | |
commit | d90a638101921807d6dc8fca14fc39f843552983 (patch) | |
tree | 518407ecd84e722ee166192602c8bc3998517d09 /src/feature_flags.zig | |
parent | 047a8d3f0d39118ded97f693d4e4a7cb23e8c6a4 (diff) | |
download | bun-d90a638101921807d6dc8fca14fc39f843552983.tar.gz bun-d90a638101921807d6dc8fca14fc39f843552983.tar.zst bun-d90a638101921807d6dc8fca14fc39f843552983.zip |
Re-enable workaround for 127.0.0.01
Diffstat (limited to 'src/feature_flags.zig')
-rw-r--r-- | src/feature_flags.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature_flags.zig b/src/feature_flags.zig index c3a9fea10..3d016efb6 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -104,4 +104,4 @@ pub const disable_lolhtml = false; /// on macOS that specifically impacts localhost and not /// other ipv4 hosts. This is a workaround for that. /// "localhost" fails to connect. -pub const hardcode_localhost_to_127_0_0_1 = env.isMac; +pub const hardcode_localhost_to_127_0_0_1 = true; |