import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: 'FrogMC',
description: "funny frogloader",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Docs', link: '/info' },
{ text: 'Mod Template', link: '/template' },
{ text: 'About', link: '/about' }
],
sidebar: [
{
text: 'Home',
items: [
{ text: 'Information', link: '/info' },
]
},
{
text: 'Installation',
items: [
{ text: 'Client', link: '/install/client' },
{ text: 'Server', link: '/install/server' }
]
},
{
text: 'Development',
items: [
{ text: 'Creating your first mod', link: '/tutorial' },
{ text: 'Using FrogLib', link: '/tutorial/froglib' },
{ text: 'Add a Block', link: '/tutorial/block' },
{ text: 'Add an Item', link: '/tutorial/item' },
{ text: 'Mixins', link: '/tutorial/mixins' },
{ text: 'AccessWideners', link: '/tutorial/accesswideners' },
]
},
{
text: 'Specifications',
items: [
{ text: 'frog.mod.toml', link: '/spec/fmt' },
{ text: '*.mixins.json', link: '/spec/mixin-config' },
{ text: '*.accesswidener', link: '/spec/aw' },
]
},
{
text: 'Extensions',
items: [
{ text: 'Entrypoints', link: '/exts/entrypoints' },
{ text: 'Mixin', link: '/exts/mixin' },
{ text: 'AccessWideners', link: '/exts/aw' },
{ text: 'PreLaunch', link: '/exts/prelaunch' },
]
},
{
text: 'Contributing',
items: [
{ text: 'Guidelines', link: '/contributing/guidelines' },
{ text: 'Tools', link: '/contributing/tools' },
]
},
],
socialLinks: [
{
icon: 'discord',
link: 'https://discord.frogmc.dev'
},
{ icon: {
svg: ''
}, link: 'https://git.frogmc.dev/frogmc', ariaLabel: 'FrogMC Forgejo' }
],
footer: {
message: 'FrogMC is not an official Minecraft Product and is not approved by or associated with Mojang.',
copyright: 'Copyright © 2024 FrogMC, licensed under Apache-2.0'
},
editLink: {
pattern: 'https://git.frogmc.dev/frogmc/frogmc.dev/edit/mistress/:path'
},
outline: 'deep',
externalLinkIcon: true
},
locales: {
root: {
label: 'English',
lang: 'en'
}
},
sitemap: {
hostname: 'https://frogmc.dev'
},
lastUpdated: true
})