13 lines
323 B
TypeScript
13 lines
323 B
TypeScript
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 };
|