2024-01-25 16:32:45 +00:00
|
|
|
import type { DefaultTheme } from 'vitepress'
|
2024-02-24 14:20:10 +00:00
|
|
|
// @unocss-include
|
2023-11-14 15:10:49 +00:00
|
|
|
|
2023-11-12 16:42:57 +00:00
|
|
|
export const meta = {
|
2024-01-26 16:57:58 +00:00
|
|
|
name: 'freemediaheckyeah',
|
2024-01-25 16:32:45 +00:00
|
|
|
description: 'The largest collection of free stuff on the internet!',
|
|
|
|
hostname: 'https://fmhy.net',
|
|
|
|
keywords: ['stream', 'movies', 'gaming', 'reading', 'anime']
|
|
|
|
}
|
2023-11-12 16:42:57 +00:00
|
|
|
|
2024-01-04 08:08:55 +00:00
|
|
|
export const commitRef = process.env.CF_PAGES
|
2024-01-27 08:12:16 +00:00
|
|
|
? `<a href="https://github.com/fmhy/FMHYEdit/commit/${
|
|
|
|
process.env.CF_PAGES_COMMIT_SHA
|
|
|
|
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
|
2024-01-25 16:32:45 +00:00
|
|
|
: 'dev'
|
2023-12-28 10:48:39 +00:00
|
|
|
|
2024-01-25 16:32:45 +00:00
|
|
|
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤️</a>`
|
2023-11-14 15:10:49 +00:00
|
|
|
|
2024-01-25 16:32:45 +00:00
|
|
|
export const search: DefaultTheme.Config['search'] = {
|
2024-01-04 08:08:55 +00:00
|
|
|
options: {
|
|
|
|
miniSearch: {
|
|
|
|
searchOptions: {
|
2024-01-25 16:32:45 +00:00
|
|
|
combineWith: 'AND',
|
2024-01-04 08:08:55 +00:00
|
|
|
fuzzy: false,
|
|
|
|
// @ts-ignore
|
2024-01-25 16:32:45 +00:00
|
|
|
boostDocument: (
|
|
|
|
_,
|
|
|
|
term,
|
|
|
|
storedFields: Record<string, string | string[]>
|
|
|
|
) => {
|
2024-01-04 08:08:55 +00:00
|
|
|
const titles = (storedFields?.titles as string[])
|
|
|
|
.filter((t) => Boolean(t))
|
2024-01-25 16:32:45 +00:00
|
|
|
.map((t) => t.toLowerCase())
|
2024-01-04 08:08:55 +00:00
|
|
|
// Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index)
|
|
|
|
const titleIndex =
|
2024-01-25 16:32:45 +00:00
|
|
|
titles
|
|
|
|
.map((t, i) => (t?.includes(term) ? i : -1))
|
|
|
|
.find((i) => i >= 0) ?? -1
|
|
|
|
if (titleIndex >= 0) return 10000 - titleIndex
|
2024-01-04 08:08:55 +00:00
|
|
|
|
2024-01-25 16:32:45 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
2024-01-04 08:08:55 +00:00
|
|
|
},
|
2024-01-25 16:32:45 +00:00
|
|
|
detailedView: true
|
2024-01-04 08:08:55 +00:00
|
|
|
},
|
2024-01-25 16:32:45 +00:00
|
|
|
provider: 'local'
|
|
|
|
}
|
2024-01-04 08:08:55 +00:00
|
|
|
|
|
|
|
export const socialLinks: DefaultTheme.SocialLink[] = [
|
2024-01-25 16:32:45 +00:00
|
|
|
{ icon: 'github', link: 'https://github.com/fmhy/FMHYEdit' },
|
|
|
|
{ icon: 'discord', link: 'https://discord.gg/Stz6y6NgNg' },
|
2023-11-14 15:10:49 +00:00
|
|
|
{
|
2024-01-25 16:32:45 +00:00
|
|
|
icon: 'reddit',
|
|
|
|
link: 'https://reddit.com/r/FREEMEDIAHECKYEAH'
|
|
|
|
}
|
|
|
|
]
|
2024-01-04 08:08:55 +00:00
|
|
|
|
2024-01-26 16:57:58 +00:00
|
|
|
export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
2024-02-24 14:20:10 +00:00
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:name-badge"></span> Adblocking / Privacy',
|
|
|
|
link: '/adblockvpnguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:robot"></span> Artificial Intelligence',
|
|
|
|
link: '/ai'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:television"></span> Movies / TV / Anime',
|
|
|
|
link: '/videopiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:musical-note"></span> Music / Podcasts / Radio',
|
|
|
|
link: '/audiopiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:video-game"></span> Gaming / Emulation',
|
|
|
|
link: '/gamingpiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:green-book"></span> Books / Comics / Manga',
|
|
|
|
link: '/readingpiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:floppy-disk"></span> Downloading',
|
|
|
|
link: '/downloadpiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:cyclone"></span> Torrenting',
|
|
|
|
link: '/torrentpiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:brain"></span> Educational',
|
|
|
|
link: '/edupiracyguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:mobile-phone"></span> Android / iOS',
|
|
|
|
link: '/android-iosguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:penguin"></span> Linux / MacOS',
|
|
|
|
link: '/linuxguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:globe-showing-asia-australia"></span> Non-English',
|
|
|
|
link: '/non-english'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:file-folder"></span> Miscellaneous',
|
|
|
|
link: '/miscguide'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:wrench"></span> Tools',
|
2024-01-04 08:08:55 +00:00
|
|
|
collapsed: false,
|
|
|
|
items: [
|
2024-01-25 16:32:45 +00:00
|
|
|
{
|
2024-02-24 14:20:10 +00:00
|
|
|
text: '<span class="i-twemoji:laptop"></span> System Tools',
|
|
|
|
link: '/system-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:card-file-box"></span> File Tools',
|
|
|
|
link: '/file-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:paperclip"></span> Internet Tools',
|
|
|
|
link: '/internet-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:left-speech-bubble"></span> Social Media Tools',
|
|
|
|
link: '/social-media-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:memo"></span> Text Tools',
|
|
|
|
link: '/text-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
|
2024-04-30 05:37:05 +00:00
|
|
|
link: '/game-tools'
|
2024-02-24 14:20:10 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:camera"></span> Image Tools',
|
|
|
|
link: '/img-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:videocassette"></span> Video Tools',
|
|
|
|
link: '/video-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:speaker-high-volume"></span> Audio Tools',
|
|
|
|
link: '/audiopiracyguide#audio-tools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:red-apple"></span> Educational Tools',
|
2024-01-25 16:32:45 +00:00
|
|
|
link: '/edupiracyguide#educational-tools'
|
|
|
|
},
|
2024-02-24 14:20:10 +00:00
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:man-technologist"></span> Developer Tools',
|
|
|
|
link: '/devtools'
|
|
|
|
}
|
2024-01-25 16:32:45 +00:00
|
|
|
]
|
2024-01-04 08:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
2024-02-24 14:20:10 +00:00
|
|
|
text: '<span class="i-twemoji:plus"></span> More',
|
2024-01-04 08:08:55 +00:00
|
|
|
collapsed: true,
|
|
|
|
items: [
|
2024-02-24 14:20:10 +00:00
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:no-one-under-eighteen"></span> NSFW',
|
|
|
|
link: '/nsfwpiracy'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:warning"></span> Unsafe Sites',
|
|
|
|
link: '/unsafesites'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '<span class="i-twemoji:package"></span> Storage',
|
|
|
|
link: '/storage'
|
|
|
|
}
|
2024-01-25 16:32:45 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|