mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
0e488b7ce3
* test frontmatter rendering * restructure files * add docs website * move postcss config * revert postcss config * update readme * update logo * fix internal links
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: 'linkding',
|
|
logo: {
|
|
src: './src/assets/logo.svg',
|
|
},
|
|
social: {
|
|
github: 'https://github.com/sissbruecker/linkding',
|
|
},
|
|
sidebar: [
|
|
{
|
|
label: 'Getting Started',
|
|
items: [
|
|
{ label: 'Installation', slug: 'installation' },
|
|
{ label: 'Managed Hosting', slug: 'managed-hosting' },
|
|
{ label: 'Browser Extension', slug: 'browser-extension' },
|
|
],
|
|
},
|
|
{
|
|
label: 'Guides',
|
|
items: [
|
|
{ label: 'Options', slug: 'options' },
|
|
{ label: 'Backups', slug: 'backups' },
|
|
{ label: 'Admin', slug: 'admin' },
|
|
{ label: 'Keyboard Shortcuts', slug: 'shortcuts' },
|
|
{ label: 'How To', slug: 'how-to' },
|
|
{ label: 'Troubleshooting', slug: 'troubleshooting' },
|
|
{ label: 'REST API', slug: 'api' },
|
|
],
|
|
},
|
|
{
|
|
label: 'Resources',
|
|
items: [
|
|
{ label: 'Community', slug: 'community' },
|
|
{ label: 'Acknowledgements', slug: 'acknowledgements' },
|
|
],
|
|
},
|
|
],
|
|
customCss: [
|
|
'./src/styles/custom.css',
|
|
],
|
|
}),
|
|
],
|
|
});
|