mirror of
https://github.com/facebook/lexical.git
synced 2025-05-17 06:59:17 +08:00
166 lines
4.4 KiB
JavaScript
166 lines
4.4 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
// @ts-check
|
|
// Note: type annotations allow type checking and IDEs autocompletion
|
|
|
|
const lightCodeTheme = require('prism-react-renderer/themes/github');
|
|
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
|
|
const importPlugin = require('remark-import-partial');
|
|
|
|
const TITLE = 'Lexical';
|
|
const GITHUB_REPO_URL = 'https://github.com/facebook/lexical'; // TODO: Update when repo name updated
|
|
|
|
/** @type {import('@docusaurus/types').Config} */
|
|
const config = {
|
|
baseUrl: '/',
|
|
|
|
favicon: 'img/favicon.ico',
|
|
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
organizationName: 'facebook',
|
|
plugins: ['./plugins/webpack-buffer'],
|
|
presets: [
|
|
[
|
|
'classic',
|
|
/** @type {import('@docusaurus/preset-classic').Options} */
|
|
({
|
|
blog: {
|
|
editUrl: `${GITHUB_REPO_URL}/tree/main/packages/lexical-website-new/blog/`,
|
|
showReadingTime: true, // TODO: Update when directory finalized
|
|
},
|
|
docs: {
|
|
editUrl: `${GITHUB_REPO_URL}/tree/main/packages/lexical-website-new/`,
|
|
remarkPlugins: [importPlugin],
|
|
// TODO: Update when directory finalized
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
},
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
}),
|
|
],
|
|
],
|
|
|
|
// Usually your GitHub org/user name.
|
|
projectName: 'lexical',
|
|
|
|
tagline: 'An extensible text editor framework that does things differently',
|
|
|
|
themeConfig:
|
|
/** @type {import('@docusaurus/preset-classic').ThemeConfig & import('@docusaurus/theme-search-algolia').ThemeConfig} */
|
|
({
|
|
algolia: {
|
|
apiKey: '00b99bc61a623e1abd819b1d655da918',
|
|
appId: 'YRGKJK6OMH',
|
|
contextualSearch: true,
|
|
indexName: 'lexical',
|
|
},
|
|
docs: {
|
|
sidebar: {
|
|
autoCollapseCategories: true,
|
|
hideable: true,
|
|
},
|
|
},
|
|
footer: {
|
|
copyright: `Copyright © ${new Date().getFullYear()} Meta Platforms, Inc. Built with Docusaurus.`,
|
|
links: [
|
|
{
|
|
items: [
|
|
{
|
|
label: 'Introduction',
|
|
to: '/docs/intro',
|
|
},
|
|
],
|
|
title: 'Docs',
|
|
},
|
|
{
|
|
items: [
|
|
{
|
|
href: 'https://stackoverflow.com/questions/tagged/lexicaljs',
|
|
label: 'Stack Overflow',
|
|
},
|
|
{
|
|
href: 'https://twitter.com/lexicaljs',
|
|
label: 'Twitter',
|
|
},
|
|
],
|
|
title: 'Community',
|
|
},
|
|
{
|
|
items: [
|
|
{
|
|
href: 'https://github.com/facebook/lexical',
|
|
label: 'GitHub',
|
|
},
|
|
],
|
|
title: 'More',
|
|
},
|
|
{
|
|
// Please do not remove the privacy and terms, it's a legal requirement.
|
|
items: [
|
|
{
|
|
href: 'https://opensource.facebook.com/legal/privacy/',
|
|
label: 'Privacy',
|
|
rel: 'noreferrer noopener',
|
|
target: '_blank',
|
|
},
|
|
{
|
|
href: 'https://opensource.facebook.com/legal/terms/',
|
|
label: 'Terms',
|
|
rel: 'noreferrer noopener',
|
|
target: '_blank',
|
|
},
|
|
],
|
|
|
|
title: 'Legal',
|
|
},
|
|
],
|
|
style: 'dark',
|
|
},
|
|
navbar: {
|
|
items: [
|
|
{
|
|
label: 'Playground',
|
|
position: 'left',
|
|
to: 'https://playground.lexical.dev/',
|
|
},
|
|
{
|
|
docId: 'intro',
|
|
label: 'Docs',
|
|
position: 'left',
|
|
type: 'doc',
|
|
},
|
|
{label: 'Community', position: 'left', to: '/community'},
|
|
{
|
|
href: GITHUB_REPO_URL,
|
|
label: 'GitHub',
|
|
position: 'right',
|
|
},
|
|
],
|
|
logo: {
|
|
alt: 'Lexical',
|
|
src: 'img/logo.svg',
|
|
srcDark: 'img/logo-dark.svg',
|
|
},
|
|
},
|
|
prism: {
|
|
darkTheme: darkCodeTheme,
|
|
theme: lightCodeTheme,
|
|
},
|
|
}),
|
|
|
|
title: TITLE,
|
|
|
|
url: 'https://lexical.dev',
|
|
};
|
|
|
|
module.exports = config;
|