File size: 507 Bytes
88c4c60 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | /**
* Per-tool DNS hosts — written to hosts file as 127.0.0.1 when MITM DNS is enabled.
* Kept in sync with MITM routing; shared by Node (dnsConfig) and dashboard UI.
*/
const TOOL_HOSTS = {
antigravity: ["daily-cloudcode-pa.googleapis.com", "cloudcode-pa.googleapis.com"],
copilot: ["api.individual.githubcopilot.com"],
kiro: ["runtime.us-east-1.kiro.dev", "q.us-east-1.amazonaws.com", "codewhisperer.us-east-1.amazonaws.com"],
cursor: ["api2.cursor.sh"],
};
module.exports = { TOOL_HOSTS };
|