Embed docs into sync_server

This commit is contained in:
Andras Schmelczer 2025-12-07 19:23:13 +00:00
commit 05b46a883f
11 changed files with 445 additions and 88 deletions

View file

@ -3,7 +3,7 @@ import { defineConfig } from "vitepress"
export default defineConfig({
title: "VaultLink",
description: "Self-hosted real-time synchronisation for Obsidian",
base: "/vault-link/",
base: "/",
themeConfig: {
logo: "/logo.svg",
nav: [
@ -56,5 +56,5 @@ export default defineConfig({
provider: "local"
}
},
head: [["link", { rel: "icon", type: "image/svg+xml", href: "/vault-link/logo.svg" }]]
head: [["link", { rel: "icon", type: "image/svg+xml", href: "/logo.svg" }]]
})