mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 17:15:38 +08:00
chore: change default value of strict route
This commit is contained in:
@@ -26,7 +26,7 @@ export const TunViewer = forwardRef<DialogRef>((props, ref) => {
|
||||
autoRoute: true,
|
||||
autoDetectInterface: true,
|
||||
dnsHijack: ["any:53", "tcp://any:53"],
|
||||
strictRoute: true,
|
||||
strictRoute: false,
|
||||
mtu: 9000,
|
||||
});
|
||||
|
||||
@@ -39,7 +39,7 @@ export const TunViewer = forwardRef<DialogRef>((props, ref) => {
|
||||
autoRoute: clash?.tun["auto-route"] ?? true,
|
||||
autoDetectInterface: clash?.tun["auto-detect-interface"] ?? true,
|
||||
dnsHijack: clash?.tun["dns-hijack"] ?? ["any:53", "tcp://any:53"],
|
||||
strictRoute: clash?.tun["strict-route"] ?? true,
|
||||
strictRoute: clash?.tun["strict-route"] ?? false,
|
||||
mtu: clash?.tun.mtu ?? 9000,
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user