diff --git a/docs/en/next/site-config.html b/docs/en/next/site-config.html index c642fcf330..9336840914 100644 --- a/docs/en/next/site-config.html +++ b/docs/en/next/site-config.html @@ -106,7 +106,7 @@
users
- The users
array mentioned earlier.
wrapPagesHTML
- Boolean flag to indicate whether html
files in /pages
should be wrapped with Docusaurus site styles, header and footer. This feature is experimental and relies on the files being html
fragments instead of complete pages. It inserts the contents of your html
file with no extra processing. Defaults to false
.
Users can also add their own custom fields if they wish to provide some data across different files.
-const users = [
{
caption: "User1",
@@ -169,12 +169,14 @@
stylesheets: [ "https://docusaurus.io/style.css" ],
facebookAppId: "1615782811974223",
facebookPixelId: "352490515235776",
- twitter: "true"
+ twitter: "true",
+ twitterImage: "img/docusaurus.png",
+ ogImage: "img/docusaurus.png",
};
module.exports = siteConfig;
-