mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-10 07:37:19 +02:00
Update siteConfig example and docs (#544)
This commit is contained in:
parent
bbbe311004
commit
bc3eef1b00
2 changed files with 34 additions and 10 deletions
|
@ -53,6 +53,8 @@ headerLinks: [
|
||||||
|
|
||||||
`noIndex` - Boolean. If true, Docusaurus will politely ask crawlers and search engines to avoid indexing your site. This is done with a header tag and so only applies to docs and pages. Will not attempt to hide static resources. This is a best effort request. Malicious crawlers can and will still index your site.
|
`noIndex` - Boolean. If true, Docusaurus will politely ask crawlers and search engines to avoid indexing your site. This is done with a header tag and so only applies to docs and pages. Will not attempt to hide static resources. This is a best effort request. Malicious crawlers can and will still index your site.
|
||||||
|
|
||||||
|
`organizationName` - GitHub username of the organization or user hosting this project. This is used by the publishing script to determine where your GitHub pages website will be hosted.
|
||||||
|
|
||||||
`projectName` - Project name. This must match your GitHub repo project name (case sensitive).
|
`projectName` - Project name. This must match your GitHub repo project name (case sensitive).
|
||||||
|
|
||||||
`tagline` - Tagline for your website.
|
`tagline` - Tagline for your website.
|
||||||
|
@ -136,8 +138,6 @@ h1 {
|
||||||
|
|
||||||
- `separate` - The secondary navigation is a separate pane defaulting on the right side of a document. See http://docusaurus.io/docs/en/translation.html for an example.
|
- `separate` - The secondary navigation is a separate pane defaulting on the right side of a document. See http://docusaurus.io/docs/en/translation.html for an example.
|
||||||
|
|
||||||
`organizationName` - GitHub username of the organization or user hosting this project. This is used by the publishing script to determine where your GitHub pages website will be hosted.
|
|
||||||
|
|
||||||
`scripts` - Array of JavaScript sources to load. The script tag will be inserted in the HTML head.
|
`scripts` - Array of JavaScript sources to load. The script tag will be inserted in the HTML head.
|
||||||
|
|
||||||
`separateCss` - Folders inside which any `css` files will not be processed and concatenated to Docusaurus' styles. This is to support static `html` pages that may be separate from Docusaurus with completely separate styles.
|
`separateCss` - Folders inside which any `css` files will not be processed and concatenated to Docusaurus' styles. This is to support static `html` pages that may be separate from Docusaurus with completely separate styles.
|
||||||
|
@ -175,17 +175,17 @@ const siteConfig = {
|
||||||
baseUrl: "/",
|
baseUrl: "/",
|
||||||
// For github.io type URLS, you would combine the url and baseUrl like:
|
// For github.io type URLS, you would combine the url and baseUrl like:
|
||||||
// url: "https://reasonml.github.io",
|
// url: "https://reasonml.github.io",
|
||||||
// url: "/reason-react/",
|
// baseUrl: "/reason-react/",
|
||||||
organizationName: "facebook",
|
organizationName: "facebook",
|
||||||
projectName: "docusaurus",
|
projectName: "docusaurus",
|
||||||
noIndex: false,
|
noIndex: false,
|
||||||
|
// For no header links in the top nav bar -> headerLinks: [],
|
||||||
headerLinks: [
|
headerLinks: [
|
||||||
{ doc: "doc1", label: "Docs" },
|
{ doc: "doc1", label: "Docs" },
|
||||||
{ page: "help", label: "Help" },
|
{ page: "help", label: "Help" },
|
||||||
{ search: true },
|
{ search: true },
|
||||||
{ blog: true }
|
{ blog: true }
|
||||||
],
|
],
|
||||||
// For no header links in the top nav bar -> headerLinks: [],
|
|
||||||
headerIcon: "img/docusaurus.svg",
|
headerIcon: "img/docusaurus.svg",
|
||||||
favicon: "img/favicon.png",
|
favicon: "img/favicon.png",
|
||||||
colors: {
|
colors: {
|
||||||
|
@ -193,6 +193,7 @@ const siteConfig = {
|
||||||
secondaryColor: "#205C3B"
|
secondaryColor: "#205C3B"
|
||||||
},
|
},
|
||||||
editUrl: "https://github.com/facebook/docusaurus/edit/master/docs/",
|
editUrl: "https://github.com/facebook/docusaurus/edit/master/docs/",
|
||||||
|
// users variable set above
|
||||||
users,
|
users,
|
||||||
disableHeaderTitle: true,
|
disableHeaderTitle: true,
|
||||||
disableTitleTagline: true,
|
disableTitleTagline: true,
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
* LICENSE file in the root directory of this source tree.
|
* LICENSE file in the root directory of this source tree.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// See https://docusaurus.io/docs/site-config.html for all the possible
|
||||||
|
// site configuration options.
|
||||||
|
|
||||||
/* List of projects/orgs using your project for the users page */
|
/* List of projects/orgs using your project for the users page */
|
||||||
const users = [
|
const users = [
|
||||||
{
|
{
|
||||||
|
@ -18,25 +21,41 @@ const users = [
|
||||||
const siteConfig = {
|
const siteConfig = {
|
||||||
title: 'Test Site' /* title for your website */,
|
title: 'Test Site' /* title for your website */,
|
||||||
tagline: 'A website for testing',
|
tagline: 'A website for testing',
|
||||||
url: 'https://facebook.github.io' /* your website url */,
|
url: 'https://your-docusaurus-test-site.com' /* your website url */,
|
||||||
baseUrl: '/test-site/' /* base url for your project */,
|
baseUrl: '/' /* base url for your project */,
|
||||||
|
// For github.io type URLs, you would set the url and baseUrl like:
|
||||||
|
// url: 'https://facebook.github.io',
|
||||||
|
// baseUrl: '/test-site/',
|
||||||
|
|
||||||
|
// Used for publishing and more
|
||||||
projectName: 'test-site',
|
projectName: 'test-site',
|
||||||
|
organizationName: 'facebook',
|
||||||
|
// For top-level user or org sites, the organization is still the same.
|
||||||
|
// e.g., for the https://JoelMarcey.github.io site, it would be set like...
|
||||||
|
// organizationName: 'JoelMarcey'
|
||||||
|
|
||||||
|
// For no header links in the top nav bar -> headerLinks: [],
|
||||||
headerLinks: [
|
headerLinks: [
|
||||||
{doc: 'doc1', label: 'Docs'},
|
{doc: 'doc1', label: 'Docs'},
|
||||||
{doc: 'doc4', label: 'API'},
|
{doc: 'doc4', label: 'API'},
|
||||||
{page: 'help', label: 'Help'},
|
{page: 'help', label: 'Help'},
|
||||||
{blog: true, label: 'Blog'},
|
{blog: true, label: 'Blog'},
|
||||||
],
|
],
|
||||||
|
|
||||||
|
// If you have users set above, you add it here:
|
||||||
users,
|
users,
|
||||||
|
|
||||||
/* path to images for header/footer */
|
/* path to images for header/footer */
|
||||||
headerIcon: 'img/docusaurus.svg',
|
headerIcon: 'img/docusaurus.svg',
|
||||||
footerIcon: 'img/docusaurus.svg',
|
footerIcon: 'img/docusaurus.svg',
|
||||||
favicon: 'img/favicon.png',
|
favicon: 'img/favicon.png',
|
||||||
|
|
||||||
/* colors for website */
|
/* colors for website */
|
||||||
colors: {
|
colors: {
|
||||||
primaryColor: '#2E8555',
|
primaryColor: '#2E8555',
|
||||||
secondaryColor: '#205C3B',
|
secondaryColor: '#205C3B',
|
||||||
},
|
},
|
||||||
|
|
||||||
/* custom fonts for website */
|
/* custom fonts for website */
|
||||||
/*fonts: {
|
/*fonts: {
|
||||||
myFont: [
|
myFont: [
|
||||||
|
@ -48,20 +67,24 @@ const siteConfig = {
|
||||||
"system-ui"
|
"system-ui"
|
||||||
]
|
]
|
||||||
},*/
|
},*/
|
||||||
|
|
||||||
// This copyright info is used in /core/Footer.js and blog rss/atom feeds.
|
// This copyright info is used in /core/Footer.js and blog rss/atom feeds.
|
||||||
copyright:
|
copyright:
|
||||||
'Copyright © ' +
|
'Copyright © ' +
|
||||||
new Date().getFullYear() +
|
new Date().getFullYear() +
|
||||||
' Your Name or Your Company Name',
|
' Your Name or Your Company Name',
|
||||||
// organizationName: 'deltice', // or set an env variable ORGANIZATION_NAME
|
|
||||||
// projectName: 'test-site', // or set an env variable PROJECT_NAME
|
|
||||||
highlight: {
|
highlight: {
|
||||||
// Highlight.js theme to use for syntax highlighting in code blocks
|
// Highlight.js theme to use for syntax highlighting in code blocks
|
||||||
theme: 'default',
|
theme: 'default',
|
||||||
},
|
},
|
||||||
|
|
||||||
scripts: ['https://buttons.github.io/buttons.js'],
|
scripts: ['https://buttons.github.io/buttons.js'],
|
||||||
// You may provide arbitrary config keys to be used as needed by your template.
|
|
||||||
repoUrl: 'https://github.com/facebook/test-site',
|
// You may provide arbitrary config keys to be used as needed by your
|
||||||
|
// template. For example, if you need your repo's URL...
|
||||||
|
// repoUrl: 'https://github.com/facebook/test-site',
|
||||||
|
|
||||||
/* On page navigation for the current documentation page */
|
/* On page navigation for the current documentation page */
|
||||||
// onPageNav: 'separate',
|
// onPageNav: 'separate',
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue