-
-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set base url to /Pumpkin/ for github pages
- Loading branch information
Showing
1 changed file
with
23 additions
and
15 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,36 +1,44 @@ | ||
import { defineConfig } from 'vitepress'; | ||
import { defineConfig } from "vitepress"; | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: 'Pumpkin', | ||
description: 'Empowering everyone to host fast and efficient Minecraft servers', | ||
lang: 'en-US', | ||
title: "Pumpkin", | ||
description: | ||
"Empowering everyone to host fast and efficient Minecraft servers", | ||
lang: "en-US", | ||
base: "/Pumpkin/", | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
sidebar: [ | ||
{ | ||
text: 'About', | ||
text: "About", | ||
items: [ | ||
{ text: 'Introduction', link: '/about/introduction' }, | ||
{ text: 'Quick Start', link: '/about/quick-start' }, | ||
{ text: 'Contributing', link: 'https://github.com/Snowiiii/Pumpkin/blob/master/CONTRIBUTING.md' }, | ||
{ text: "Introduction", link: "/about/introduction" }, | ||
{ text: "Quick Start", link: "/about/quick-start" }, | ||
{ | ||
text: "Contributing", | ||
link: "https://github.com/Snowiiii/Pumpkin/blob/master/CONTRIBUTING.md", | ||
}, | ||
], | ||
}, | ||
{ | ||
text: 'Plugins', | ||
text: "Plugins", | ||
items: [ | ||
{ text: 'About Plugins', link: '/plugins/about' }, | ||
{ text: 'Getting Started in Rust', link: '/plugins/getting-started-rs' }, | ||
{ text: "About Plugins", link: "/plugins/about" }, | ||
{ | ||
text: "Getting Started in Rust", | ||
link: "/plugins/getting-started-rs", | ||
}, | ||
], | ||
}, | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/Snowiiii/Pumpkin' }, | ||
{ icon: 'discord', link: 'https://discord.gg/RNm224ZsDq' }, | ||
{ icon: "github", link: "https://github.com/Snowiiii/Pumpkin" }, | ||
{ icon: "discord", link: "https://discord.gg/RNm224ZsDq" }, | ||
], | ||
|
||
logo: '/assets/icon.png', | ||
logo: "/assets/icon.png", | ||
}, | ||
head: [['link', { rel: 'icon', href: '/assets/favicon.ico' }]], | ||
head: [["link", { rel: "icon", href: "/assets/favicon.ico" }]], | ||
}); |