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

47 lines
1.2 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: 'viewport', content: 'width=device-width, initial-scale=1' }],
['meta', { name: 'Cache-control', content: 'public,max-age=3600' }],
],
/**
* Theme configuration, here is the default theme configuration for VuePress.
*
* refhttps://v1.vuepress.vuejs.org/theme/default-theme-config.html
*/
themeConfig: {
repo: 'BitPatty/gctGenerator',
editLinks: true,
docsDir: 'docs',
editLinkText: 'Edit this page on GitHub',
lastUpdated: false,
nav: [
{
text: 'Cookbook',
link: '/guide.html',
},
{
text: 'Changelog',
link: '/changelog.html',
},
{
text: 'Installing IOS58',
link: '/ios58.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'],
};