2020-06-28 06:33:20 +09:00
|
|
|
|
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.
|
|
|
|
|
*
|
|
|
|
|
* ref:https://v1.vuepress.vuejs.org/theme/default-theme-config.html
|
|
|
|
|
*/
|
|
|
|
|
themeConfig: {
|
2020-06-28 11:51:06 +09:00
|
|
|
|
repo: "BitPatty/gctGenerator",
|
|
|
|
|
editLinks: true,
|
|
|
|
|
docsDir: "docs",
|
|
|
|
|
editLinkText: "Edit this page on GitHub",
|
2020-06-28 06:33:20 +09:00
|
|
|
|
lastUpdated: false,
|
|
|
|
|
nav: [
|
|
|
|
|
{
|
2020-06-28 11:51:06 +09:00
|
|
|
|
text: "Cookbook",
|
2020-06-28 06:33:20 +09:00
|
|
|
|
link: "/guide.html",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "Changelog",
|
|
|
|
|
link: "/changelog.html",
|
|
|
|
|
},
|
2020-06-28 11:51:06 +09:00
|
|
|
|
{
|
|
|
|
|
text: "Installing IOS58",
|
|
|
|
|
link: "/ios58.html",
|
|
|
|
|
},
|
2020-06-28 06:33:20 +09:00
|
|
|
|
{
|
|
|
|
|
text: "Sunshine Discord",
|
|
|
|
|
link: "https://discord.gg/9dGJWEc",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Apply plugins,ref:https://v1.vuepress.vuejs.org/zh/plugin/
|
|
|
|
|
*/
|
|
|
|
|
plugins: ["@vuepress/plugin-back-to-top", "@vuepress/plugin-medium-zoom"],
|
|
|
|
|
};
|