nebula2 / src /utils /siteSupport.ts
soiz1's picture
Upload folder using huggingface_hub
01fcadf verified
raw
history blame contribute delete
336 Bytes
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 };