-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from ShokoAnime/add-favicon
Add Favicon.
- Loading branch information
Showing
2 changed files
with
142 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,147 +1,147 @@ | ||
import {defineConfig} from 'vitepress' | ||
import lightbox from "vitepress-plugin-lightbox" | ||
import { defineConfig } from 'vitepress'; | ||
import lightbox from 'vitepress-plugin-lightbox'; | ||
|
||
export default defineConfig({ | ||
title: "Shoko Docs", | ||
description: "Resource Center for the Shoko Suite", | ||
// base: '/shokodocs/', | ||
cleanUrls: true, | ||
lastUpdated: true, | ||
ignoreDeadLinks: true, | ||
themeConfig: { | ||
logo: '/images/logo.svg', | ||
outline: [2, 3], | ||
editLink: { | ||
pattern: 'https://github.com/ShokoAnime/ShokoDocs/edit/master/docs/:path' | ||
}, | ||
search: { | ||
provider: 'local' | ||
}, | ||
nav: [ | ||
{text: 'Home', link: '/'}, | ||
{text: 'Latest News', link: 'https://shokoanime.com/blog'}, | ||
{text: 'Downloads', link: 'https://shokoanime.com/downloads'}, | ||
title: 'Shoko Docs', | ||
description: 'Resource Center for the Shoko Suite', | ||
cleanUrls: true, | ||
lastUpdated: true, | ||
ignoreDeadLinks: true, | ||
head: [['link', { rel: 'icon', href: '/favicon.ico' }]], | ||
themeConfig: { | ||
logo: '/images/logo.svg', | ||
outline: [2, 3], | ||
editLink: { | ||
pattern: 'https://github.com/ShokoAnime/ShokoDocs/edit/master/docs/:path', | ||
}, | ||
search: { | ||
provider: 'local', | ||
}, | ||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Latest News', link: 'https://shokoanime.com/blog' }, | ||
{ text: 'Downloads', link: 'https://shokoanime.com/downloads' }, | ||
], | ||
sidebar: [ | ||
{ | ||
text: 'Getting Started', | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Installing Shoko Server', link: '/getting-started/installing-shoko-server' }, | ||
{ text: 'Running Shoko Server', link: '/getting-started/running-shoko-server' }, | ||
{ text: 'Available Programs & Plugins', link: '/getting-started/available-programs-plugins' }, | ||
], | ||
}, | ||
{ | ||
text: 'Shoko Server', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Dashboard', link: '/shoko-server/dashboard' }, | ||
{ text: 'Logs', link: '/shoko-server/logs' }, | ||
{ text: 'Actions', link: '/shoko-server/actions' }, | ||
{ text: 'Settings', link: '/shoko-server/settings' }, | ||
{ | ||
text: 'Utilities', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Unrecognized Files', link: '/shoko-server/unrecognized-files' }, | ||
{ text: 'Release Management', link: '/shoko-server/release-management' }, | ||
{ text: 'Series Without Files', link: '/shoko-server/series-without-files' }, | ||
{ text: 'File Search', link: '/shoko-server/file-search' }, | ||
{ text: 'File Rename', link: '/shoko-server/file-rename' }, | ||
], | ||
}, | ||
{ | ||
text: 'Misc', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Understanding AniDB Ban', link: '/shoko-server/understanding-anidb-ban' }, | ||
{ text: 'WebUI Themes', link: '/shoko-server/webui-themes' }, | ||
], | ||
}, | ||
], | ||
}, | ||
{ | ||
text: 'Plex Integration', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Installing Agents & Scanners', link: '/plex/installing-agents-scanners' }, | ||
{ text: 'Configuring Shoko Metadata', link: '/plex/configuring-shoko-metadata' }, | ||
{ text: 'Configuring Shoko Relay', link: '/plex/configuring-shoko-relay' }, | ||
{ text: 'Shoko Relay Utility Scripts', link: '/plex/shoko-relay-utility-scripts' }, | ||
{ text: 'Syncing Watched States', link: '/plex/syncing-watched-states' }, | ||
], | ||
sidebar: [ | ||
{ | ||
text: 'Getting Started', | ||
collapsed: false, | ||
items: [ | ||
{text: 'Installing Shoko Server', link: '/getting-started/installing-shoko-server'}, | ||
{text: 'Running Shoko Server', link: '/getting-started/running-shoko-server'}, | ||
{text: 'Available Programs & Plugins', link: '/getting-started/available-programs-plugins'}, | ||
] | ||
}, | ||
{ | ||
text: 'Shoko Server', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Dashboard', link: '/shoko-server/dashboard'}, | ||
{text: 'Logs', link: '/shoko-server/logs'}, | ||
{text: 'Actions', link: '/shoko-server/actions'}, | ||
{text: 'Settings', link: '/shoko-server/settings'}, | ||
{ | ||
text: 'Utilities', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Unrecognized Files', link: '/shoko-server/unrecognized-files'}, | ||
{text: 'Release Management', link: '/shoko-server/release-management'}, | ||
{text: 'Series Without Files', link: '/shoko-server/series-without-files'}, | ||
{text: 'File Search', link: '/shoko-server/file-search'}, | ||
{text: 'File Rename', link: '/shoko-server/file-rename'}, | ||
] | ||
}, | ||
{ | ||
text: 'Misc', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Understanding AniDB Ban', link: '/shoko-server/understanding-anidb-ban'}, | ||
{text: 'WebUI Themes', link: '/shoko-server/webui-themes'}, | ||
] | ||
} | ||
], | ||
}, | ||
{ | ||
text: 'Plex Integration', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Installing Agents & Scanners', link: '/plex/installing-agents-scanners'}, | ||
{text: 'Configuring Shoko Metadata', link: '/plex/configuring-shoko-metadata'}, | ||
{text: 'Configuring Shoko Relay', link: '/plex/configuring-shoko-relay'}, | ||
{text: 'Shoko Relay Utility Scripts', link: '/plex/shoko-relay-utility-scripts'}, | ||
{text: 'Syncing Watched States', link: '/plex/syncing-watched-states'}, | ||
] | ||
}, | ||
{ | ||
text: 'Jellyfin Integration', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Installing Shokofin', link: '/jellyfin/installing-shokofin'}, | ||
{text: 'Configuring Shokofin', link: '/jellyfin/configuring-shokofin'}, | ||
{text: 'Recommendations', link: '/jellyfin/recommendations'}, | ||
{text: 'Scheduled Tasks', link: '/jellyfin/scheduled-tasks'}, | ||
] | ||
}, | ||
{ | ||
text: 'Kodi Integration', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Installing Shokodi', link: '/kodi/installing-shokodi'}, | ||
{text: 'Configuring Shokodi', link: '/kodi/configuring-shokodi'}, | ||
] | ||
}, | ||
}, | ||
{ | ||
text: 'Jellyfin Integration', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Installing Shokofin', link: '/jellyfin/installing-shokofin' }, | ||
{ text: 'Configuring Shokofin', link: '/jellyfin/configuring-shokofin' }, | ||
{ text: 'Recommendations', link: '/jellyfin/recommendations' }, | ||
{ text: 'Scheduled Tasks', link: '/jellyfin/scheduled-tasks' }, | ||
], | ||
}, | ||
{ | ||
text: 'Kodi Integration', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Installing Shokodi', link: '/kodi/installing-shokodi' }, | ||
{ text: 'Configuring Shokodi', link: '/kodi/configuring-shokodi' }, | ||
], | ||
}, | ||
|
||
{ | ||
text: 'Renaming Plugins', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Available Renamers', link: '/renamer-plugins/available-renamers'}, | ||
{ | ||
text: 'WebAOM', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Getting Started', link: '/renamer-plugins/webaom/getting-started'}, | ||
{text: 'Renaming', link: '/renamer-plugins/webaom/renaming'}, | ||
{text: 'Moving', link: '/renamer-plugins/webaom/moving'}, | ||
] | ||
}, | ||
{ | ||
text: 'Lua Renamer', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Getting Started', link: '/renamer-plugins/lua/getting-started'}, | ||
{text: 'Script Authoring', link: '/renamer-plugins/lua/script-authoring'}, | ||
{text: 'FAQ', link: '/renamer-plugins/lua/faq'}, | ||
] | ||
}, | ||
] | ||
}, | ||
{ | ||
text: 'Changelog', | ||
collapsed: true, | ||
items: [ | ||
{text: 'Shoko Server', link: '/changelog/shoko-server'}, | ||
{text: 'Shoko WebUI', link: '/changelog/shoko-webui'}, | ||
{text: 'Shoko Desktop', link: '/changelog/shoko-desktop'}, | ||
{text: 'Shoko Metadata', link: '/changelog/shoko-metadata'}, | ||
{text: 'Shoko Relay', link: '/changelog/shoko-relay'}, | ||
{text: 'Shokofin', link: '/changelog/shokofin'}, | ||
{text: 'My Anime 3', link: '/changelog/my-anime-3'}, | ||
] | ||
}, | ||
{text: 'FAQ', link: '/faq'}, | ||
{text: 'Contribute', link: '/contribute'}, | ||
{ | ||
text: 'Renaming Plugins', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Available Renamers', link: '/renamer-plugins/available-renamers' }, | ||
{ | ||
text: 'WebAOM', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Getting Started', link: '/renamer-plugins/webaom/getting-started' }, | ||
{ text: 'Renaming', link: '/renamer-plugins/webaom/renaming' }, | ||
{ text: 'Moving', link: '/renamer-plugins/webaom/moving' }, | ||
], | ||
}, | ||
{ | ||
text: 'Lua Renamer', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Getting Started', link: '/renamer-plugins/lua/getting-started' }, | ||
{ text: 'Script Authoring', link: '/renamer-plugins/lua/script-authoring' }, | ||
{ text: 'FAQ', link: '/renamer-plugins/lua/faq' }, | ||
], | ||
}, | ||
], | ||
socialLinks: [ | ||
{icon: 'github', link: 'https://github.com/ShokoAnime/'}, | ||
{icon: 'discord', link: 'https://discord.gg/vpeHDsg'} | ||
] | ||
}, | ||
markdown: | ||
{ | ||
config: (md) => { | ||
md.use(lightbox, {}); | ||
}, | ||
} | ||
, | ||
}) | ||
}, | ||
{ | ||
text: 'Changelog', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Shoko Server', link: '/changelog/shoko-server' }, | ||
{ text: 'Shoko WebUI', link: '/changelog/shoko-webui' }, | ||
{ text: 'Shoko Desktop', link: '/changelog/shoko-desktop' }, | ||
{ text: 'Shoko Metadata', link: '/changelog/shoko-metadata' }, | ||
{ text: 'Shoko Relay', link: '/changelog/shoko-relay' }, | ||
{ text: 'Shokofin', link: '/changelog/shokofin' }, | ||
{ text: 'My Anime 3', link: '/changelog/my-anime-3' }, | ||
], | ||
}, | ||
{ text: 'FAQ', link: '/faq' }, | ||
{ text: 'Contribute', link: '/contribute' }, | ||
], | ||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/ShokoAnime/' }, | ||
{ icon: 'discord', link: 'https://discord.gg/vpeHDsg' }, | ||
], | ||
}, | ||
markdown: | ||
{ | ||
config: (md) => { | ||
md.use(lightbox, {}); | ||
}, | ||
} | ||
, | ||
}); |
Binary file not shown.