mirror of
https://github.com/Drop-OSS/drop-wiki.git
synced 2025-11-17 02:01:16 +10:00
feat(wiki): v0.1.0-beta getting started
This commit is contained in:
56
docs/.vitepress/config.mts
Normal file
56
docs/.vitepress/config.mts
Normal file
@ -0,0 +1,56 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
// https://vitepress.dev/reference/site-config
|
||||
export default defineConfig({
|
||||
title: "Drop",
|
||||
description: "Drop is an open-source, self-hosted game distribution platform. Like Steam!",
|
||||
head: [['link', { rel: 'icon', href: '/drop.svg' }]],
|
||||
themeConfig: {
|
||||
logo: "/drop.svg",
|
||||
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
nav: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'GitHub', link: 'https://github.com/Drop-OSS' }
|
||||
],
|
||||
|
||||
sidebar: [
|
||||
{ text: "What is Drop?", link: "/about" },
|
||||
{
|
||||
text: 'Admin Guides',
|
||||
items: [
|
||||
{ text: 'Quickstart', link: '/guides/quickstart' },
|
||||
{ text: "Exposing your instance", link: "/guides/exposing" },
|
||||
{ text: "Create your admin account", link: "/guides/create-admin-account" }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'User Guides',
|
||||
items: [
|
||||
{ text: "Getting started with Drop", link: "/guides/client" }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: "Metadata",
|
||||
items: [
|
||||
{ text: "GiantBomb", link: "/metadata/giantbomb" }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: "Documentation",
|
||||
items: [
|
||||
{ text: "Library", link: "/docs/library" }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/Drop-OSS' },
|
||||
{ icon: 'discord', link: "https://discord.gg/NHx46XKJWA" }
|
||||
],
|
||||
|
||||
outline: {
|
||||
level: [2, 3],
|
||||
},
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user