import { defineConfig } from "vitepress"; import UnoCSS from "unocss/vite"; import { presetUno, presetAttributify, presetIcons } from "unocss"; export default defineConfig({ title: "FMHY", description: "The Largest Collection Of Free Stuff On The Internet!The Largest Collection Of Free Stuff On The Internet!", titleTemplate: ":title | FreeMediaHeckYeah", lang: "en-US", lastUpdated: true, cleanUrls: true, appearance: "dark", srcExclude: ["README.md", "single-page", "DEVTools.md"], ignoreDeadLinks: true, head: [ ["meta", { name: "theme-color", content: "#7bc5e4" }], ["meta", { name: "og:type", content: "website" }], ["meta", { name: "og:locale", content: "en" }], ], vite: { plugins: [ UnoCSS({ presets: [ presetUno(), presetAttributify(), presetIcons({ scale: 1.2, extraProperties: { display: "inline-block", "vertical-align": "middle", }, }), ], }), ], }, themeConfig: { search: { provider: "local", }, outline: "deep", logo: "/fmhy.ico", nav: [ { text: "Glossary", link: "https://rentry.org/The-Piracy-Glossary" }, { text: "Guides", link: "https://rentry.co/fmhy-guides" }, { text: "Backups", link: "https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/backups" }, { text: "Updates", link: "https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates/" }, ], sidebar: [ { text: "
Beginners Guide to Piracy", link: "/Beginners-Guide" }, { text: "Adblocking / Privacy", link: "/AdblockVPNGuide" }, { text: "Artificial Intelligence", link: "/AI" }, { text: "Android / iOS", link: "/Android-iOSGuide" }, { text: "Movies / TV / Anime", link: "/VideoPiracyGuide" }, { text: "Music / Podcasts / Radio", link: "/AudioPiracyGuide" }, { text: "Gaming / Emulation", link: "/GamingPiracyGuide" }, { text: "Books / Comics / Manga", link: "/ReadingPiracyGuide" }, { text: "Downloading", link: "/DownloadPiracyGuide" }, { text: "Torrenting", link: "/TorrentPiracyGuide" }, { text: "Educational", link: "/EDUPiracyGuide" }, { text: "Tools", link: "/TOOLSGuide" }, { text: "Image Tools", link: "/img-tools" }, { text: "Developer Tools", link: "/DEVTools" }, { text: "Android / iOS", link: "/Android-iOSGuide" }, { text: "Linux / MacOS", link: "/LinuxGuide" }, { text: "Non-English", link: "/Non-English" }, { text: "Miscellaneous", link: "/MISCGuide" }, { text: "NSFW", link: "/NSFWPiracy" }, { text: "Unsafe Sites", link: "/UnsafeSites" }, { text: "Base64", link: "/base64" }, { text: "Storage", link: "/STORAGE" }, ], socialLinks: [ { icon: "github", link: "https://github.com/fmhy/FMHYEdit" }, { icon: "discord", link: "https://discord.gg/Stz6y6NgNg" }, { icon: { svg: '', }, link: "https://reddit.com/r/FREEMEDIAHECKYEAH", }, ], }, });