Update site config example in docs

This commit is contained in:
Joel Marcey 2018-04-17 21:15:50 -07:00 committed by GitHub
parent fd04b44dda
commit 47d08bf1da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,7 +158,7 @@ h1 {
Users can also add their own custom fields if they wish to provide some data across different files. Users can also add their own custom fields if they wish to provide some data across different files.
## Example siteConfig.js with all fields ## Example siteConfig.js with many available fields
``` ```
const users = [ const users = [
@ -223,7 +223,9 @@ const siteConfig = {
stylesheets: [ "https://docusaurus.io/style.css" ], stylesheets: [ "https://docusaurus.io/style.css" ],
facebookAppId: "1615782811974223", facebookAppId: "1615782811974223",
facebookPixelId: "352490515235776", facebookPixelId: "352490515235776",
twitter: "true" twitter: "true",
twitterImage: "img/docusaurus.png",
ogImage: "img/docusaurus.png",
}; };
module.exports = siteConfig; module.exports = siteConfig;