mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-21 00:43:09 +00:00
34 lines
700 B
JavaScript
34 lines
700 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;
|