mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
130 lines
3.3 KiB
JavaScript
130 lines
3.3 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} */
|
|
module.exports = {
|
|
|
|
title: 'Actual Budget Documentation',
|
|
tagline: 'Dinosaurs are cool',
|
|
url: 'https://actualbudget.github.io',
|
|
baseUrl: '/docs/',
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
favicon: 'img/favicon.ico',
|
|
|
|
// GitHub pages deployment config.
|
|
// If you aren't using GitHub pages, you don't need these.
|
|
organizationName: 'actualbudget', // Usually your GitHub org/user name.
|
|
projectName: 'docs', // Usually your repo name.
|
|
|
|
// 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: {
|
|
routeBasePath: '/', // Serve the docs at the site's root
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
// Please change this to your repo.
|
|
// Remove this to remove the "edit this page" links.
|
|
editUrl:
|
|
'https://github.com/actualbudget/docs/tree/master/',
|
|
},
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
}),
|
|
],
|
|
],
|
|
themeConfig:
|
|
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
|
|
({
|
|
navbar: {
|
|
title: 'Documentation',
|
|
logo: {
|
|
alt: 'Actual Logo',
|
|
src: 'img/actual.png',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
docId: 'index',
|
|
position: 'left',
|
|
label: 'Home',
|
|
},
|
|
{
|
|
href: 'https://github.com/actualbudget/docs',
|
|
label: 'GitHub',
|
|
position: 'right',
|
|
},
|
|
],
|
|
},
|
|
footer: {
|
|
style: 'dark',
|
|
links: [
|
|
{
|
|
title: 'GitHub',
|
|
items: [
|
|
{
|
|
label: 'GitHub',
|
|
href: 'https://github.com/actualbudget',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Discord',
|
|
items: [
|
|
{
|
|
label: 'Discord',
|
|
href: 'https://discord.gg/8JfAXSgfRf',
|
|
}
|
|
],
|
|
}
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} Actual Budget. Built with Docusaurus.`,
|
|
},
|
|
prism: {
|
|
theme: lightCodeTheme,
|
|
darkTheme: darkCodeTheme,
|
|
},
|
|
}
|
|
),
|
|
plugins: [
|
|
[
|
|
require.resolve("@cmfcmf/docusaurus-search-local"),
|
|
{
|
|
indexDocs: true,
|
|
indexDocSidebarParentCategories: 0,
|
|
indexPages: false,
|
|
language: "en",
|
|
style: undefined,
|
|
maxSearchResults: 8,
|
|
lunr: {
|
|
|
|
tokenizerSeparator: /[\s\-]+/,
|
|
|
|
b: 0.75,
|
|
|
|
k1: 1.2,
|
|
|
|
titleBoost: 5,
|
|
contentBoost: 1,
|
|
tagsBoost: 3,
|
|
parentCategoriesBoost: 2, // Only used when indexDocSidebarParentCategories > 0
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|