Files
flipper/website/siteConfig.js
Pascal Hartig f76db15bdb Edit Docusaurus edit URL (#421)
Summary:
Makes editing pages easier.
Pull Request resolved: https://github.com/facebook/flipper/pull/421

Reviewed By: danielbuechele

Differential Revision: D15121670

Pulled By: passy

fbshipit-source-id: a201de3ce84204a9478711a80f3557671de743ab
2019-04-29 08:09:50 -07:00

43 lines
1.2 KiB
JavaScript

/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
const repoUrl = 'https://github.com/facebook/flipper';
const siteConfig = {
title: 'Flipper' /* title for your website */,
tagline: 'Extensible mobile app debugging',
url: 'https://fbflipper.com/' /* your website url */,
baseUrl: '/' /* base url for your project */,
projectName: 'flipper',
headerLinks: [
{doc: 'getting-started', label: 'Getting Started'},
{doc: 'understand', label: 'Docs'},
{href: repoUrl, label: 'GitHub'},
],
editUrl: 'https://github.com/facebook/flipper/blob/master/docs/',
/* path to images for header/footer */
headerIcon: 'img/icon.png',
footerIcon: 'img/mascot.png',
favicon: 'img/icon.png',
/* colors for website */
colors: {
primaryColor: '#121020',
secondaryColor: '#121020',
accentColor: '#785BA3',
actionColor: '#008cf2',
},
copyright: 'Copyright © ' + new Date().getFullYear() + ' Facebook',
highlight: {
theme: 'default',
},
repoUrl,
scripts: ['https://buttons.github.io/buttons.js'],
stylesheets: [],
onPageNav: 'separate',
};
module.exports = siteConfig;