mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-18 15:33:19 +00:00
37 lines
722 B
JavaScript
37 lines
722 B
JavaScript
const siteConfig = {
|
|
title: 'macOS defaults',
|
|
tagline: 'Incomplete list of macOS defaults write commands with demos ✨',
|
|
baseUrl: '/',
|
|
|
|
projectName: 'macos-defaults',
|
|
organizationName: 'yannbertrand',
|
|
|
|
headerLinks: [
|
|
{ doc: 'index', label: 'Home' },
|
|
{
|
|
href: '//github.com/yannbertrand/macos-defaults',
|
|
label: 'GitHub',
|
|
external: true,
|
|
},
|
|
],
|
|
|
|
headerIcon: 'img/docusaurus.svg',
|
|
footerIcon: 'img/docusaurus.svg',
|
|
favicon: 'img/favicon.ico',
|
|
|
|
colors: {
|
|
primaryColor: '#2E8555',
|
|
secondaryColor: '#205C3B',
|
|
},
|
|
|
|
highlight: {
|
|
theme: 'default',
|
|
},
|
|
|
|
onPageNav: 'separate',
|
|
cleanUrl: true,
|
|
|
|
twitterUsername: '_YannBertrand',
|
|
}
|
|
|
|
module.exports = siteConfig
|