mirror of
https://github.com/thelounge/thelounge
synced 2024-11-25 21:40:22 +00:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
|
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";
|