File size: 336 Bytes
01fcadf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import type { Proxy } from "./settings";
type ProxyChoices = Exclude<Proxy, "automatic">;
const SupportedSites: Record<string, ProxyChoices> = {
"discord.gg": "uv",
"discord.com": "uv",
"spotify.com": "uv",
"spotify.link": "uv",
"youtube.com": "uv",
"youtu.be": "uv"
};
export { SupportedSites };
|