mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-01 19:27:48 +02:00
* feat(v2): createModule plugin api * remove unused stuff * address review, createModule -> createData * link.link -> link.url * remove youtube page * update yarn.lock
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
module.exports = {
|
|
title: 'Docusaurus',
|
|
tagline: '⚡️ Painless static site generator',
|
|
organizationName: 'facebook',
|
|
projectName: 'docusaurus',
|
|
baseUrl: '/',
|
|
url: 'https://docusaurus-2.netlify.com',
|
|
headerLinks: [
|
|
{url: 'docs/installation', label: 'Docs'},
|
|
{url: 'blog', label: 'Blog'},
|
|
{url: 'feedback/', label: 'Feedback'},
|
|
],
|
|
headerIcon: 'img/docusaurus.svg',
|
|
favicon: 'img/docusaurus.ico',
|
|
algolia: {
|
|
apiKey: '47ecd3b21be71c5822571b9f59e52544',
|
|
indexName: 'docusaurus-2',
|
|
algoliaOptions: {},
|
|
},
|
|
plugins: [
|
|
{
|
|
name: '@docusaurus/plugin-content-docs',
|
|
options: {
|
|
path: '../docs',
|
|
sidebarPath: require.resolve('./sidebars.json'),
|
|
},
|
|
},
|
|
{
|
|
name: '@docusaurus/plugin-content-blog',
|
|
options: {
|
|
path: '../website-1.x/blog',
|
|
},
|
|
},
|
|
{
|
|
name: '@docusaurus/plugin-content-pages',
|
|
},
|
|
{
|
|
name: '@docusaurus/plugin-sitemap',
|
|
},
|
|
],
|
|
};
|