oh-my-posh/website/docusaurus.config.js

144 lines
3.6 KiB
JavaScript
Raw Normal View History

2021-09-18 09:59:24 -07:00
const path = require('path');
2020-10-05 02:33:12 -07:00
module.exports = {
2022-03-20 13:25:47 -07:00
title: 'Oh My Posh',
tagline: 'A prompt theme engine for any shell.',
url: 'https://ohmyposh.dev',
baseUrl: '/',
favicon: 'img/favicon.ico',
organizationName: 'jandedobbeleer',
projectName: 'oh-my-posh',
onBrokenLinks: 'ignore',
plugins: [
path.resolve(__dirname, 'plugins', 'appinsights'),
'docusaurus-node-polyfills'
],
2020-10-05 02:33:12 -07:00
themeConfig: {
prism: {
2022-06-03 13:35:11 -07:00
additionalLanguages: ['powershell', 'lua', 'jsstacktrace', 'toml'],
2020-10-05 02:33:12 -07:00
},
navbar: {
2022-03-20 13:25:47 -07:00
title: 'Oh My Posh',
2020-10-05 02:33:12 -07:00
logo: {
2022-03-20 13:25:47 -07:00
alt: 'Oh My Posh Logo',
src: 'img/logo.svg',
2020-10-05 02:33:12 -07:00
},
items: [
{
2022-03-20 13:25:47 -07:00
to: 'docs',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
2020-10-05 02:33:12 -07:00
},
2021-05-04 11:58:27 -07:00
{
2022-03-20 13:25:47 -07:00
to: 'blog',
label: 'Blog',
position: 'left'
2021-05-04 11:58:27 -07:00
},
2022-03-18 12:15:06 -07:00
{
2022-03-20 13:25:47 -07:00
href: 'https://github.com/sponsors/JanDeDobbeleer',
label: 'Sponsor',
position: 'left',
2022-03-18 12:15:06 -07:00
},
2020-10-05 02:33:12 -07:00
{
2022-03-20 13:25:47 -07:00
href: 'https://swag.ohmyposh.dev',
label: 'Swag',
position: 'left',
},
{
href: 'https://github.com/jandedobbeleer/oh-my-posh',
2021-10-28 06:27:25 -07:00
className: 'header-github-link',
'aria-label': 'GitHub repository',
2022-03-20 13:25:47 -07:00
position: 'right',
2020-10-05 02:33:12 -07:00
},
2021-12-22 05:43:10 -08:00
{
2022-03-20 13:25:47 -07:00
href: 'https://www.gitkraken.com/invite/nQmDPR9D',
2021-12-22 05:43:10 -08:00
className: 'header-gk-link',
'aria-label': 'GitKraken',
2022-03-20 13:25:47 -07:00
position: 'right',
2021-12-22 05:43:10 -08:00
},
2021-12-22 05:00:21 -08:00
{
2022-03-20 13:25:47 -07:00
href: 'https://twitter.com/jandedobbeleer',
2021-12-22 05:00:21 -08:00
className: 'header-twitter-link',
'aria-label': 'Twitter',
2022-03-20 13:25:47 -07:00
position: 'right',
2021-12-22 05:00:21 -08:00
}
2020-10-05 02:33:12 -07:00
],
},
footer: {
2022-03-20 13:25:47 -07:00
style: 'dark',
2020-10-05 02:33:12 -07:00
links: [
{
2022-03-20 13:25:47 -07:00
title: 'How to',
2020-10-05 02:33:12 -07:00
items: [
{
2022-03-20 13:25:47 -07:00
label: 'Getting started',
to: 'docs/',
2020-10-05 02:33:12 -07:00
},
2020-10-06 12:01:42 -07:00
{
2022-03-20 13:25:47 -07:00
label: 'Contributing',
to: 'docs/contributing/started',
2020-10-05 02:33:12 -07:00
},
],
},
{
2022-03-20 13:25:47 -07:00
title: 'Social',
2020-10-05 02:33:12 -07:00
items: [
{
2022-03-20 13:25:47 -07:00
label: 'GitHub',
href: 'https://github.com/jandedobbeleer/oh-my-posh',
2020-10-05 02:33:12 -07:00
},
{
2022-03-20 13:25:47 -07:00
label: 'Twitter',
href: 'https://twitter.com/jandedobbeleer',
2020-10-05 02:33:12 -07:00
},
],
},
{
2022-03-20 13:25:47 -07:00
title: 'Links',
2020-10-05 02:33:12 -07:00
items: [
2020-10-22 05:10:33 -07:00
{
2022-03-20 13:25:47 -07:00
label: 'Sponsor',
href: 'https://github.com/sponsors/JanDeDobbeleer',
2020-10-22 05:10:33 -07:00
},
2021-05-04 11:58:27 -07:00
{
2022-03-20 13:25:47 -07:00
label: 'GitKraken',
href: 'https://www.gitkraken.com/invite/nQmDPR9D',
2021-05-04 11:58:27 -07:00
},
2020-10-05 02:33:12 -07:00
{
2022-03-20 13:25:47 -07:00
label: 'Docusaurus',
href: 'https://github.com/facebook/docusaurus',
2020-10-05 02:33:12 -07:00
},
],
},
],
2022-03-20 13:25:47 -07:00
copyright: `Copyright © ${new Date().getFullYear()} <a href='https://github.com/sponsors/JanDeDobbeleer' target='_blank'>Jan De Dobbeleer</a> and <a href='/docs/contributors'>contributors</a>.`,
2020-10-05 02:33:12 -07:00
},
2021-09-18 09:59:24 -07:00
appInsights: {
2022-03-20 13:25:47 -07:00
instrumentationKey: '72804848-dc30-4856-8245-4fa1450b041f',
2021-10-21 10:53:38 -07:00
},
algolia: {
2022-02-03 02:55:07 -08:00
appId: 'XIR4RB3TM1',
apiKey: '15c5f4340520612ed98fe21d15882029',
2021-10-21 10:53:38 -07:00
indexName: 'ohmyposh',
},
2020-10-05 02:33:12 -07:00
},
presets: [
[
2022-03-20 13:25:47 -07:00
'@docusaurus/preset-classic',
2020-10-05 02:33:12 -07:00
{
docs: {
2022-03-20 13:25:47 -07:00
sidebarPath: require.resolve('./sidebars.js'),
2022-05-12 22:54:59 -07:00
editUrl: 'https://github.com/jandedobbeleer/oh-my-posh/edit/main/website/',
2020-10-05 02:33:12 -07:00
},
theme: {
2022-01-10 12:59:49 -08:00
customCss: [
2022-03-20 13:25:47 -07:00
require.resolve('./src/css/custom.css'),
require.resolve('./src/css/prism-rose-pine-moon.css')
2022-01-10 12:59:49 -08:00
],
2020-10-05 02:33:12 -07:00
},
},
],
],
};