docusaurus/website/siteConfig.js
Joel Marcey bba7edd80f Update the Algolia search information (#49)
* Update the Algolia search information

- It is a guide
- Rename the file, specifying that it is a guide
- Add a commented out Aloglia section to siteConfig.js

* Different search bar location flag
2017-08-08 11:47:18 -07:00

63 lines
1.6 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: "/docusaurus/img/prettier.png",
infoLink: "https://www.prettier.io",
pinned: true
}
];
const siteConfig = {
title: "Docusaurus",
tagline: "Open Source Documentation Websites",
url: "https://facebookexperimental.github.io",
baseUrl: "/docusaurus/",
projectName: "docusaurus",
users,
editUrl:
"https://github.com/facebookexperimental/docusaurus/edit/master/docs/",
headerLinksInternal: [
{
section: "docs",
href: "/docusaurus/docs/getting-started.html",
text: "Docs"
},
{ section: "help", href: "/docusaurus/LANGUAGE/help.html", text: "Help" }
],
headerLinksExternal: [
{
section: "github",
href: "https://github.com/facebookexperimental/docusaurus",
text: "GitHub"
}
],
headerIcon: "img/docusaurus.svg",
footerIcon: "img/docusaurus.svg",
favicon: "img/favicon.png",
// See https://docusaurus.io/docs/search for more information about Aloglia
// search
/*
algolia: {
apiKey: "my-search-only-api-key-1234",
indexName: "my-index-name"
},
*/
colors: {
primaryColor: "#2E8555",
secondaryColor: "#205C3B",
prismColor:
"rgba(46, 133, 85, 0.03)"
}
};
module.exports = siteConfig;