2
0
Files
bot/apps/docs/docusaurus.config.js

94 lines
2.2 KiB
JavaScript
Raw Normal View History

/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
2022-03-07 18:30:11 +01:00
title: 'Typebot docs',
tagline: 'Get to Typebot next level with its documentation',
url: 'https://docs.typebot.io',
baseUrl: '/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'baptisteArno', // Usually your GitHub org/user name.
themeConfig: {
navbar: {
2022-03-07 18:30:11 +01:00
title: 'Typebot',
logo: {
2022-03-07 18:30:11 +01:00
alt: 'Typebot Logo',
src: 'img/logo.svg',
},
items: [
{
2022-03-30 09:41:31 +02:00
href: 'https://github.com/baptisteArno/typebot.io/tree/main/apps/docs',
2022-03-07 18:30:11 +01:00
label: 'Contribute',
position: 'right',
},
],
},
algolia: {
2022-03-07 18:30:11 +01:00
apiKey: 'd2e121d4ad4e5346ac2c3329424981a1',
indexName: 'typebot',
appId: 'DXYNLHZTGJ',
},
footer: {
links: [
{
2022-03-07 18:30:11 +01:00
title: 'Product',
items: [
{
2022-03-07 18:30:11 +01:00
label: 'Homepage',
to: 'https://www.typebot.io',
},
{
2022-03-07 18:30:11 +01:00
label: 'Roadmap',
to: 'https://app.typebot.io/feedback',
},
],
},
{
2022-03-07 18:30:11 +01:00
title: 'Community',
items: [
{
2022-03-07 18:30:11 +01:00
label: 'Facebook Group',
href: 'https://www.facebook.com/groups/typebot',
},
{
2022-03-07 18:30:11 +01:00
label: 'Twitter',
href: 'https://twitter.com/Typebot_io',
},
],
},
{
2022-03-07 18:30:11 +01:00
title: 'Company',
items: [
{
2022-03-07 18:30:11 +01:00
label: 'Terms of Service',
href: 'https://www.typebot.io/terms-of-service',
},
{
2022-03-07 18:30:11 +01:00
label: 'Privacy Policy',
href: 'https://www.typebot.io/privacy-policies',
},
],
},
],
},
colorMode: {
disableSwitch: false,
respectPrefersColorScheme: true,
},
},
presets: [
[
2022-03-07 18:30:11 +01:00
'@docusaurus/preset-classic',
{
docs: {
2022-03-07 18:30:11 +01:00
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
},
theme: {
2022-03-07 18:30:11 +01:00
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
2022-03-07 18:30:11 +01:00
}