mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
8 lines
207 B
TypeScript
Executable file
8 lines
207 B
TypeScript
Executable file
import * as dns from "dns";
|
|
|
|
// Set DNS result order early before anything that may depend on it happens.
|
|
if (dns.setDefaultResultOrder) {
|
|
dns.setDefaultResultOrder("verbatim");
|
|
}
|
|
|
|
import "./command-line";
|