docusaurus/website/siteConfig.js
Eric Nakagawa dc835770a0 RSS/ATOM Feed added, Prism changes, and global Copyright notice. (#94)
* Add Reason support to Prism.js

* Add XML/ATOM feed. Generates for both localhost and build script. Adds meta links to feeds to all html files.

* Updated /core/Footer.js to pull from siteConfig
2017-09-27 12:49:09 -07:00

68 lines
1.8 KiB
JavaScript

/**
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
/* List of projects/orgs using your project for the users page */
const users = [
{
caption: "Prettier",
image: "/img/prettier.png",
infoLink: "https://www.prettier.io",
pinned: true
},
{
caption: "FastText",
image: "/img/fasttext.png",
infoLink: "https://fasttext.cc",
pinned: true
},
{
caption: "Docusaurus",
image: "/img/docusaurus.svg",
infoLink: "https://www.docusaurus.io",
pinned: true
}
];
const siteConfig = {
title: "Docusaurus",
tagline: "Easy to Maintain Open Source Documentation Websites",
url: "https://docusaurus.io",
baseUrl: "/",
projectName: "Docusaurus",
cname: "docusaurus.io",
users,
editUrl:
"https://github.com/facebookexperimental/docusaurus/edit/master/docs/",
headerLinks: [
{doc: "installation", label: "Docs"},
{page: "help", label: "Help"},
{blog: true, label: "Blog"},
{languages: false},
{
href: "https://github.com/facebookexperimental/docusaurus",
label: "GitHub"
}
],
headerIcon: "img/docusaurus.svg",
footerIcon: "img/docusaurus_monochrome.svg",
favicon: "img/docusaurus.ico",
// See https://docusaurus.io/docs/search for more information about Aloglia
algolia: {
apiKey: "3eb9507824b8be89e7a199ecaa1a9d2c",
indexName: "docusaurus"
},
colors: {
primaryColor: "#2E8555",
secondaryColor: "#205C3B",
prismColor: "rgba(46, 133, 85, 0.03)"
},
copyright: "Copyright © " + new Date().getFullYear() + " Facebook Inc."
};
module.exports = siteConfig;