113 lines
2.8 KiB
JavaScript
113 lines
2.8 KiB
JavaScript
/** @type {import('@docusaurus/types').Config} */
|
|
module.exports = {
|
|
title: 'Typebot docs',
|
|
tagline: 'Get to Typebot next level with its documentation',
|
|
url: 'https://docs.typebot.io',
|
|
baseUrl: '/',
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
favicon: 'img/favicon.png',
|
|
organizationName: 'baptisteArno', // Usually your GitHub org/user name.
|
|
themeConfig: {
|
|
navbar: {
|
|
title: 'Typebot',
|
|
logo: {
|
|
alt: 'Typebot Logo',
|
|
src: 'img/logo.svg',
|
|
},
|
|
items: [
|
|
{
|
|
href: '/',
|
|
label: 'Docs',
|
|
position: 'left',
|
|
},
|
|
{
|
|
href: '/api',
|
|
label: 'API Reference',
|
|
position: 'left',
|
|
},
|
|
{
|
|
href: 'https://github.com/baptisteArno/typebot.io/tree/main/apps/docs',
|
|
label: 'Contribute',
|
|
position: 'right',
|
|
},
|
|
],
|
|
},
|
|
algolia: {
|
|
apiKey: '978429d40094dc0fd2dd02db741b3dbe',
|
|
indexName: 'typebot',
|
|
appId: '6GBQ91COKA',
|
|
contextualSearch: false,
|
|
},
|
|
footer: {
|
|
links: [
|
|
{
|
|
title: 'Product',
|
|
items: [
|
|
{
|
|
label: 'Homepage',
|
|
to: 'https://www.typebot.io',
|
|
},
|
|
{ label: 'Status', to: 'https://status.typebot.io' },
|
|
{
|
|
label: 'Roadmap',
|
|
to: 'https://app.typebot.io/feedback',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Community',
|
|
items: [
|
|
{
|
|
label: 'Facebook Group',
|
|
href: 'https://www.facebook.com/groups/typebot',
|
|
},
|
|
{
|
|
label: 'Twitter',
|
|
href: 'https://twitter.com/Typebot_io',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Company',
|
|
items: [
|
|
{
|
|
label: 'Terms of Service',
|
|
href: 'https://www.typebot.io/terms-of-service',
|
|
},
|
|
{
|
|
label: 'Privacy Policy',
|
|
href: 'https://www.typebot.io/privacy-policies',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
colorMode: {
|
|
respectPrefersColorScheme: true,
|
|
},
|
|
},
|
|
presets: [
|
|
[
|
|
'@typebot.io/docusaurus-preset-openapi',
|
|
/** @type {import('@typebot.io/docusaurus-preset-openapi').Options} */
|
|
{
|
|
api: {
|
|
path: 'openapi',
|
|
routeBasePath: '/api',
|
|
},
|
|
docs: {
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
routeBasePath: '/',
|
|
editUrl: ({ docPath }) => {
|
|
return `https://github.com/baptistearno/typebot.io/edit/main/apps/docs/docs/${docPath}`
|
|
},
|
|
},
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
}
|