* Bump devalue from 5.6.3 to 5.6.4 in /docs Bumps [devalue](https://github.com/sveltejs/devalue) from 5.6.3 to 5.6.4. - [Release notes](https://github.com/sveltejs/devalue/releases) - [Changelog](https://github.com/sveltejs/devalue/blob/main/CHANGELOG.md) - [Commits](https://github.com/sveltejs/devalue/compare/v5.6.3...v5.6.4) --- updated-dependencies: - dependency-name: devalue dependency-version: 5.6.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * fix dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> Co-authored-by: Christian Beutel <>
155 lines
4.4 KiB
JavaScript
155 lines
4.4 KiB
JavaScript
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
import node from "@astrojs/node";
|
|
|
|
import starlightOpenAPI, { openAPISidebarGroups } from 'starlight-openapi'
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
import svelte from '@astrojs/svelte';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [starlight({
|
|
title: 'wanderer Documentation',
|
|
logo: {
|
|
light: '/src/assets/logo_text_dark.svg',
|
|
dark: '/src/assets/logo_text_light.svg',
|
|
replacesTitle: true
|
|
},
|
|
social: [
|
|
{ icon: 'github', label: 'GitHub', href: 'https://github.com/open-wanderer/wanderer' },
|
|
],
|
|
components: {
|
|
Footer: './src/components/footer.astro'
|
|
},
|
|
plugins: [
|
|
starlightOpenAPI([
|
|
{
|
|
base: 'api-reference',
|
|
label: 'API Reference',
|
|
schema: 'wanderer.openapi.yaml',
|
|
sidebar: {
|
|
operations: {
|
|
|
|
}
|
|
}
|
|
},
|
|
]),
|
|
],
|
|
sidebar: [
|
|
{
|
|
label: 'Welcome to wanderer',
|
|
link: '/welcome'
|
|
},
|
|
{
|
|
label: 'Using wanderer',
|
|
items: [{
|
|
label: 'Authentication',
|
|
link: '/use/authentication/'
|
|
}, {
|
|
label: 'Create a trail',
|
|
link: '/use/create-a-trail/'
|
|
},
|
|
{
|
|
label: 'Summit logs',
|
|
link: '/use/summit-logs/'
|
|
},
|
|
{
|
|
label: 'Interact with the community',
|
|
link: '/use/community-interaction/'
|
|
},
|
|
{
|
|
label: 'Share trails',
|
|
link: '/use/share-trails/'
|
|
}, {
|
|
label: 'Lists',
|
|
link: '/use/lists/'
|
|
},
|
|
{
|
|
label: 'Statistics',
|
|
link: '/use/statistics/'
|
|
},
|
|
{
|
|
label: 'Customize the map',
|
|
link: '/use/customize-map/'
|
|
},
|
|
{
|
|
label: 'Import/Export',
|
|
link: '/use/import-export/'
|
|
},
|
|
{
|
|
label: 'Integrations',
|
|
link: '/use/integrations/'
|
|
},
|
|
]
|
|
},
|
|
{
|
|
label: 'Running wanderer',
|
|
items: [
|
|
{
|
|
label: 'Installation',
|
|
items: [
|
|
{ label: 'Quickstart', link: '/run/installation/quick' },
|
|
{ label: 'Manual Docker Setup', link: '/run/installation/docker' },
|
|
{ label: 'Install from Source', link: '/run/installation/from-source' },
|
|
]
|
|
},
|
|
{
|
|
label: 'Environment configuration',
|
|
link: '/run/environment-configuration/'
|
|
},
|
|
{
|
|
label: 'Frontend configuration',
|
|
items: [
|
|
{ label: 'Edit the "About" section', link: '/run/frontend-configuration/about' },
|
|
]
|
|
},
|
|
{
|
|
label: 'Backend configuration',
|
|
items: [
|
|
{ label: 'Overview', link: '/run/backend-configuration/' },
|
|
{ label: 'SMTP', link: '/run/backend-configuration/smtp/' },
|
|
{ label: 'Authentication Providers', link: '/run/backend-configuration/auth-providers/' },
|
|
{ label: 'Backing up your server', link: '/run/backend-configuration/backup-server/' },
|
|
{ label: 'Custom categories', link: '/run/backend-configuration/custom-categories/' },
|
|
{ label: 'Adjust Filesize Limits', link: '/run/backend-configuration/adjust-filesize-limits/' },
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
label: 'Develop wanderer',
|
|
items: [
|
|
{
|
|
label: 'Local development',
|
|
link: '/develop/local-development/'
|
|
},
|
|
{
|
|
label: 'API',
|
|
link: '/develop/api/'
|
|
},
|
|
{
|
|
label: 'Federation',
|
|
link: '/develop/federation/'
|
|
},
|
|
]
|
|
},
|
|
...openAPISidebarGroups,
|
|
{
|
|
label: 'Changelog',
|
|
link: '/changelog/',
|
|
}],
|
|
customCss: ['./src/custom.css', './src/tailwind.css', '@fontsource/ibm-plex-sans/400.css', '@fontsource/ibm-plex-sans/600.css', '@fontsource/ibm-plex-mono/400.css', '@fontsource/ibm-plex-mono/600.css']
|
|
}), svelte()],
|
|
output: "server",
|
|
vite: { plugins: [tailwindcss()] },
|
|
adapter: node({
|
|
mode: "standalone"
|
|
}),
|
|
redirects: {
|
|
'/run/changelog/': '/changelog/',
|
|
'/run/backup-server/': '/run/backend-configuration/backup-server/',
|
|
'/run/custom-categories/': '/run/backend-configuration/custom-categories/',
|
|
},
|
|
}); |