gctGenerator/docs/.vuepress/config.js
Matteias Collet b7bea697be init vuepress
2020-06-29 23:31:44 +02:00

46 lines
1.1 KiB
JavaScript
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const { description } = require("../../package");
module.exports = {
title: "GCT Generator",
description: description,
head: [
["meta", { name: "theme-color", content: "#3eaf7c" }],
["meta", { name: "apple-mobile-web-app-capable", content: "yes" }],
[
"meta",
{ name: "apple-mobile-web-app-status-bar-style", content: "black" },
],
],
/**
* Theme configuration, here is the default theme configuration for VuePress.
*
* refhttps://v1.vuepress.vuejs.org/theme/default-theme-config.html
*/
themeConfig: {
repo: "",
editLinks: false,
docsDir: "",
editLinkText: "",
lastUpdated: false,
nav: [
{
text: "Guide",
link: "/guide.html",
},
{
text: "Changelog",
link: "/changelog.html",
},
{
text: "Sunshine Discord",
link: "https://discord.gg/9dGJWEc",
},
],
},
/**
* Apply pluginsrefhttps://v1.vuepress.vuejs.org/zh/plugin/
*/
plugins: ["@vuepress/plugin-back-to-top", "@vuepress/plugin-medium-zoom"],
};