From 6359e2527245f804fd42385b4b2879e1606fe369 Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Tue, 31 Oct 2023 15:29:33 +0530 Subject: [PATCH] lowercaseify sidebar links --- .vitepress/config.mts | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 80c9ef88b..1587c0341 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -40,7 +40,7 @@ export default withPwa( ["meta", { name: "twitter:card", content: "summary_large_image" }], ["meta", { name: "twitter:site", content: meta.hostname }], ], - transformHead: async (context) => generateMeta(context, meta.hostname), + transformHead: async (context) => generateMeta(context, meta.hostname), vite: { plugins: [ @@ -66,33 +66,33 @@ export default withPwa( outline: "deep", logo: "/fmhy.ico", nav: [ - { text: "Beginners Guide", link: "/Beginners-Guide" }, + { text: "Beginners Guide", link: "/beginners-guide" }, { 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: "📛 Adblocking / Privacy", link: "/AdblockVPNGuide" }, - { text: "🤖 Artificial Intelligence", link: "/AI" }, - { 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: "📛 Adblocking / Privacy", link: "/adblockvpnguide" }, + { text: "🤖 Artificial Intelligence", link: "/ai" }, + { 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: "👨‍💻 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" }, + { text: "📦 Storage", link: "/storage" }, ], socialLinks: [ { icon: "github", link: "https://github.com/fmhy/FMHYEdit" },