Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set the project name and owner correctly #5243

Merged
merged 1 commit into from
Oct 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions website/siteConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@ const users = [
];

const siteConfig = {
title: 'Test Site', // Title for your website.
tagline: 'A website for testing',
url: 'https://your-docusaurus-test-site.com', // Your website URL
title: 'Create React App', // Title for your website.
tagline: 'Create React apps with no build configuration.',
url: 'https://facebook.github.io', // Your website URL
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: 'create-react-app',
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: [
{doc: 'doc1', label: 'Docs'},
{doc: 'doc4', label: 'API'},
{page: 'help', label: 'Help'},
{ doc: 'doc1', label: 'Docs' },
{ doc: 'doc4', label: 'API' },
{ page: 'help', label: 'Help' },
],

// If you have users set above, you add it here:
Expand Down Expand Up @@ -72,7 +72,7 @@ const siteConfig = {
*/

// This copyright info is used in /core/Footer.js and blog RSS/Atom feeds.
copyright: `Copyright © ${new Date().getFullYear()} Your Name or Your Company Name`,
copyright: `Copyright © ${new Date().getFullYear()} Facebook`,

highlight: {
// Highlight.js theme to use for syntax highlighting in code blocks.
Expand Down