mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
38 lines
922 B
JavaScript
38 lines
922 B
JavaScript
module.exports = {
|
|
title: 'Starship',
|
|
description: 'The cross-shell prompt for astronauts ☄🌌️',
|
|
head: [
|
|
['link', { rel: 'icon', href: '/icon.png' }]
|
|
],
|
|
themeConfig: {
|
|
logo: '/icon.png',
|
|
sidebar: [
|
|
'/',
|
|
['/guide/', 'Guide'],
|
|
['/config/', 'Configuration'],
|
|
['/advanced-config/', 'Advanced Configuration']
|
|
],
|
|
nav: [
|
|
{ text: 'Configuration', link: '/config/' },
|
|
],
|
|
// the GitHub repo path
|
|
repo: 'starship/starship',
|
|
// the label linking to the repo
|
|
repoLabel: 'GitHub',
|
|
// if your docs are not at the root of the repo:
|
|
docsDir: 'docs',
|
|
// defaults to false, set to true to enable
|
|
editLinks: true,
|
|
// custom text for edit link. Defaults to "Edit this page"
|
|
editLinkText: 'Edit this page on GitHub'
|
|
},
|
|
plugins: [
|
|
[
|
|
'@vuepress/google-analytics',
|
|
{
|
|
'ga': 'UA-71160903-4'
|
|
}
|
|
]
|
|
]
|
|
}
|