mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-28 09:12:37 +03:00
42bf653e4a
* Propose new doc architecture * Many improvements to documentation (styling, structure...) * Remove modules added inadvertently + continue improving styling * Swizzle navbar item to add support for custom icon * Additional doc styling * Setup docs for API and redirect homepage for docs
154 lines
4.5 KiB
JavaScript
154 lines
4.5 KiB
JavaScript
|
|
// @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');
|
|
|
|
/** @type {import('@docusaurus/types').Config} */
|
|
const config = {
|
|
title: 'Twenty - Documentation',
|
|
tagline: 'Dinosaurs are cool',
|
|
favicon: 'img/favicon.ico',
|
|
|
|
// Set the production url of your site here
|
|
url: 'https://docs.twenty.com',
|
|
// Set the /<baseUrl>/ pathname under which your site is served
|
|
// For GitHub pages deployment, it is often '/<projectName>/'
|
|
baseUrl: '/',
|
|
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
|
|
headTags: [
|
|
{
|
|
tagName: 'link',
|
|
attributes: {
|
|
rel: 'stylesheet',
|
|
href: 'https://kit.fontawesome.com/c4eca3d765.css',
|
|
crossorigin: 'anonymous'
|
|
},
|
|
},
|
|
],
|
|
|
|
// Even if you don't use internalization, you can use this field to set useful
|
|
// metadata like html lang. For example, if your site is Chinese, you may want
|
|
// to replace "en" with "zh-Hans".
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en'],
|
|
},
|
|
presets: [
|
|
[
|
|
'classic',
|
|
/** @type {import('@docusaurus/preset-classic').Options} */
|
|
({
|
|
docs: {
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
sidebarCollapsible: false,
|
|
routeBasePath: '/',
|
|
editUrl:
|
|
'https://github.com/twentyhq/twenty/edit/main/docs/docs/',
|
|
},
|
|
blog: false,
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
}),
|
|
|
|
],
|
|
[
|
|
'redocusaurus',
|
|
{
|
|
// Plugin Options for loading OpenAPI files
|
|
specs: [
|
|
{
|
|
spec: 'docs/open-api/openapi.yaml',
|
|
route: '/api/',
|
|
},
|
|
],
|
|
// Theme Options for modifying how redoc renders them
|
|
theme: {
|
|
// Change with your site colors
|
|
primaryColor: '#1890ff',
|
|
},
|
|
},
|
|
]
|
|
],
|
|
|
|
themeConfig:
|
|
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
|
|
({
|
|
// Replace with your project's social card
|
|
image: 'img/docusaurus-social-card.jpg',
|
|
navbar: {
|
|
/*title: 'Twenty',*/
|
|
logo: {
|
|
alt: 'Twenty',
|
|
src: 'https://twenty.com/wp-content/uploads/2023/03/Screenshot-2023-03-07-at-22.21.44-2.png',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'search',
|
|
position: 'left',
|
|
},
|
|
{
|
|
type: 'docSidebar',
|
|
sidebarId: 'docsSidebar',
|
|
position: 'right',
|
|
label: 'Developer Docs',
|
|
},
|
|
{
|
|
type: 'docSidebar',
|
|
sidebarId: 'userGuideSidebar',
|
|
position: 'right',
|
|
label: 'User guide',
|
|
},
|
|
{
|
|
to: '/api/',
|
|
label: 'API',
|
|
position: 'right'
|
|
},
|
|
{
|
|
to: 'https://github.com/twentyhq/twenty/releases',
|
|
label: 'Releases',
|
|
position: 'right'
|
|
}
|
|
/*{
|
|
href: 'https://github.com/twentyhq/twenty',
|
|
label: 'GitHub',
|
|
position: 'right',
|
|
}*/,
|
|
],
|
|
},
|
|
algolia: {
|
|
appId: 'YOUR_APP_ID',
|
|
apiKey: 'YOUR_SEARCH_API_KEY',
|
|
indexName: 'YOUR_INDEX_NAME',
|
|
|
|
// Optional: see doc section below
|
|
contextualSearch: true,
|
|
// Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them.
|
|
externalUrlRegex: 'external\\.com|domain\\.com',
|
|
// Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs
|
|
replaceSearchResultPathname: {
|
|
from: '/docs/', // or as RegExp: /\/docs\//
|
|
to: '/',
|
|
},
|
|
// Optional: Algolia search parameters
|
|
searchParameters: {},
|
|
// Optional: path for search page that enabled by default (`false` to disable it)
|
|
searchPagePath: 'search',
|
|
},
|
|
/* footer: {
|
|
copyright: `© ${new Date().getFullYear()} Twenty. Docs generated with Docusaurus.`,
|
|
},*/
|
|
prism: {
|
|
theme: lightCodeTheme,
|
|
darkTheme: darkCodeTheme,
|
|
},
|
|
}),
|
|
};
|
|
|
|
module.exports = config;
|